FuelSDK-Java icon indicating copy to clipboard operation
FuelSDK-Java copied to clipboard

Salesforce Marketing Cloud Java SDK

Results 81 FuelSDK-Java issues
Sort by recently updated
recently updated
newest added

I'm getting the following error while trying to retrieve emails from the SalesForce Marketing Cloud: ``` Exception in thread "main" com.exacttarget.fuelsdk.ETSdkException: error invoking retrieve method for type class com.exacttarget.fuelsdk.ETEmail at...

If sdk is used in a cluster environment, there will be an access token conflict, cache the old access token server will cause 401 Unauthorized

Hi, could you explain me, what is the purpose of the .toLowerCase() call when setting a Name for Column in DataExtension? ` column.setName(name.toLowerCase()); `

Only method exposed on ETClient at the moment is getRestConnection, making it clear that this is the only use of the client for non-SOAP endpoints.

Does this SDK support "Contact" creation for Marketing Cloud? Example: /contacts/v1/contacts

Hi, could you please add 'Text Only' email type to ETEmail class? public enum Type { HTML("HTML"), TEXT("Text"), Normal("Normal"), TextOnly("Text Only"); private final String value; . . . Thank you!

The latest build artifact available through maven is more than a year old and is missing useful changes (eg this [commit that adds Attributes](https://github.com/salesforce-marketingcloud/FuelSDK-Java/commit/96ae1916f69ebeb87127c436c39930ffe3e64293) to ETSubscriber). A new release would...

Hi Team, As mentioned in code, I have added Fuelsdk dependency in pom, but when I run the code, it is keep on giving me errors in runtime one after...

The server where my application seat is having a different Charset from the one we would like to use. At moment I am fixing this extending the ETRestConnection class and...

Hello, it's a bit disturbing that a NullpointerException is thrown when calling `response.getObject();` Example: ``` ETResponse response = client.retrieve(ETList.class, filter); // assertNotNull(response); ETList etList = response.getObject(); // .... will fail...