I am using the Salesforce Account Updated node as a trigger for a workflow. Is there any way to get the changed data in the event? So for example if the name of the company has changed then I would like to know that this field has changed.
What is the error message (if any)?
There is no error message, but the payload of the node only contains references to the Account that has been updated, like the id
Please share your workflow
Use the Salesforce Account Updated Trigger, pasting it here contained access credentials, so I am not sure how to share that properly.
Ensure to copy your n8n workflow and paste it in the code block, that is in between the pairs of triple backticks, which also could be achieved by clicking </> (preformatted text) in the editor and pasting in your workflow.
```
<your workflow>
```
That implies to any JSON output you would like to share with us.
Make sure that you have removed any sensitive information from your workflow and include dummy or pinned data with it!
I do not have admin access to Salesforce but I think there should be a few things done to achieve what you want.
SELECT ParentId, FieldHistoryType, Field, Id, NewValue, OldValue
FROM FieldHistoryArchive
WHERE FieldHistoryType = 'Account' AND ParentId='0010600002ESSxbAAH'