Here you'll find what data is sent in a Webhook request and how to map those.
Consider the Testimonial form below.
Payload sent for this form.
Below block is to be used for development purposes
{
"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"
}
}
}
Note: Use the ID corresponding to the question name if the question name is not shown directly.
e.g., For the question 'Your Testimonial', the ID starts with "b6bfa325....'. */
Below block for mapping to external integration tools
"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"
}
}
}
Below is the screenshot of how it is mapped in Make(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.

