salesforce-marketingcloud / FuelSDK-Node

BSD 3-Clause "New" or "Revised" License
49 stars 24 forks source link

postDERow #9

Open DigitalFusionDeveloper opened 7 years ago

DigitalFusionDeveloper commented 7 years ago

I found this issue, it is why I initially opened this issue but it is with the backbone app not the SDK.

var options = {
    Name: "SDKDataExtension",
    props: {
        "Key": "ThisIsTheKey",
        "Value": "Some random text for the value field"
    }
};

The options should actually look like this:

var options = {
    Name: "SDKDataExtension",
    props: {
        "Key": "Value",
        "Key": "Value",
        "Key": "Value"
    }
};

routes/de-routes.js - Line 182 - backbone-app.

kaul-vineet commented 6 years ago

Hi @DigitalFusionDeveloper

I have given my definition as

var options = { Name: "PUSH Message Detail Report DE", props: { "Subscriberkey": "abc@salesforce.com", "ClientId": "134444" } };

However, I am getting "soap error" as response of post. I am using "fuelsdk-node": "2.1.0".

I see you have raised similar issue. Would you have any insight into why this error is coming.

Thanks, Vineet