Response from salesforce extension is truncated

Hi,

I am getting the response from salesforce extension truncated, I tried to use:

{calloutResponse.content}, {calloutResponse.response}, and did not work either.

The end of the JSON response looks like this:

{ "attributes": { "type": "Account", "url": "/services/data/v42.0/sobjects/Account/0016F00003d4SdiQAE" }, "Id": "0016F00003d4SdiQAE", "Name": "MyAccountName" }, { "attributes": { "type":"Accoun.....

I hope you can help me out with this matter.

Regards,

0 1 240
1 REPLY 1

Finally,

I figured out how to fix it. So on the extension XML policy settings set to false the output parse:

<Output parsed="false">name-of-your-variable</Output>

Then on the Assign message policy set the payload like so:

<Set> <Payload contentType="application/json">{name-of-your-variable}</Payload> </Set>

With this, it works like a charm!

apiproxy-7.zip