I have an incoming webhook that I then use to create a record in Salesforce CRM. I have successfully mapped the various json attributes from the webhook to specific fields in salesforce.
However, I also want to save the entire json webhook payload to a long text field in salesforce (very useful for debugging on the salesforce side). But I can’t seem to find a variable that contains the raw json webhook data.
Hey @Ben , you can enable a setting in the webhook which allows you to get the raw JSON. This setting can be changed in the “Webhooks” section within your menu. It’s called “JSON pass-through”.
You then need to use a JSON → Parse module to parse this JSON if you still like to map it out.