My workflow tries to fetch the updates of fields and push them to an external auditing system.
The field updates of audited fields are stored in the data field as JSON in the NOTE entity.
Updates look like
{"fields":["salutationName"],"attributes":{"was":{"salutationName":""},"bec ame ":{"salutationName":"Mr."}}}
The data attribute in NOTE is of type JSON_OBJECT.
When I try to get this attribute, it will not pass it correctly to the Send HTTP Request action.
Instead, it will actually post literally : {$data}
What am I missing here? Can somebody confirm this behaviour?
The field updates of audited fields are stored in the data field as JSON in the NOTE entity.
Updates look like
{"fields":["salutationName"],"attributes":{"was":{"salutationName":""},"bec ame ":{"salutationName":"Mr."}}}
The data attribute in NOTE is of type JSON_OBJECT.
When I try to get this attribute, it will not pass it correctly to the Send HTTP Request action.
Instead, it will actually post literally : {$data}
What am I missing here? Can somebody confirm this behaviour?
Comment