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.
Last updated
Was this helpful?
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.


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.

Afterwards, you should now be able to retrieve the individually parsed sections of the webhook.
Last updated
Was this helpful?
Was this helpful?
let PARSED = JSON.parse(inputData.RAW);
output = [{PARSED}];