Parsing Responses for Zapier

With some platforms such as Zapier, our webhook will come back as a single object, requiring it to be parsed. If your response is not automatically parsed, you can add a Code Zap.

Code Zap by Zapier

You will have to set the Input Data to RAW and the Text will be the returned raw_body result from the webhook catch. For the code, we are adding a step manually for Zapier to parse the code.

let PARSED = JSON.parse(inputData.RAW);

output = [{PARSED}];

Afterwards, you should now be able to retrieve the individually parsed sections of the webhook.

Last updated