Skip to main content
All CollectionsIntegrations
What data is sent in a Webhook request, and how to map it?

What data is sent in a Webhook request, and how to map it?

Updated this week

Here is the payload sent for this form.

Please see comments in the payload for details.

{
"event_id": "e733689c-9eff-4327-b6e5-62b24b8765ab",
"event_type": "survey_response",
"survey_response": {
"response_id": "response_id",
"answers": {
"b6bfa325-b588-4de5-8c54-ed5102549b8f": "Your Testimonial",
"a3290032-b513-44dd-991e-e367a41fe7bd": "Your Headshot",
"ref": "ref",
"source": "source",
"medium": "medium",
"result": "result",
"responseID": "responseID",
"v": "View",
"language": "Language",
"9065a96f-a514-4aa3-800c-a03dd5048057": "Distribution Code",
"Price": 0,
"Score": 0,
"Total Cart Amount": 0,
"Discount": 0,
"landed_at": "2025-04-17T11:21:13.589Z",
"submitted_at": "2025-04-17T11:21:13.589Z"
}
}
}

/* above block is to be used for development purposes */


/* Use the below block for mapping to external integration tools */

Note: Use the ID corresponding to the question name if the question name is not shown directly.

eg.. For the question Your Testimonial, the id starts with "b6bfa325....'. */

"answers": 
{
"b6bfa325-b588-4de5-8c54-ed5102549b8f": "Your testimonial",
"a3290032-b513-44dd-991e-e367a41fe7bd": "Your headshot",
"landed_at": "2025-04-17T11:21:13.589Z",
"submitted_at": "2025-04-17T11:21:13.589Z"
}
}
}

Here is the screenshot of how it is mapped in Integromat. Mapping Your testimonial answer to the Body of an email.

If you are still running into issues, contact us at [email protected] at any time.

Did this answer your question?