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

Columns in DataExtensions are always pre-initialized with `new ArrayList`

Looks like the issue still exist (#12 ) ` ETDataExtensionRow row = new ETDataExtensionRow(); ` `row.setDataExtensionKey("12121212-121212-1212-12121");` `row.setColumn("SUBSCRIBERKEY", "[email protected]");` `ETResponse res = client.delete(record);` Gettting error: `Keys Not Found`

**Is your feature request related to a problem? Please describe** I cannot do any upserts as the SDK doesn't support any `put` functionality. **Describe the solution you'd like** Provide a...

enhancement

*Issue* ETDataExtension.retrieveRows() does not retrieve the Id of the columns **To Reproduce** Given the following method ` private ETDataExtension getDataExtension(ETClient client, String dataExtensionName) throws ETSdkException { ETDataExtension de = null;...

bug

**Describe the bug** Error invoking update method for ETAsset **To Reproduce** Retrieve an ETAsset > set content using setContent() > attempt to update the asset in SFMC using client.update(asset); **Expected...

bug

I am using fuel-java-1.0.1. Using the following code for login: ``` ETConfiguration configuration = new ETConfiguration(); configuration.set("clientId", "my-client-id"); configuration.set("clientSecret", "my-client-secret"); ETClient client = new ETClient(configuration); ``` Intermittently, it fails with...

According to the Marketing Cloud article below (1), it is possible to do an Upsert in a DataExtension. Please, provide this option also for the Fuel Java SDK. A suggestion:...

CustomerKey (External Key) may contain spaces, and if it does than parser takes the first word from it If the key is "Test DE 2" we will have "key=[Test]" in...

If continueRequest was passed with the call i.e. continueRequest!=null, then Soap object was not instantiated to connection.getSoap() because of that I was getting null pointer exception while making ContinueRequest calls.

**Describe the bug** > EDIT 2019/12/16 > See my second comment, my endpoint was not good. > The problem is "ErrorCode 2" with every request send with SoapConnection. Hello, I...

bug