Skip to main content
The Make integration sends a flat JSON payload to a Make Webhooks module every time a session.completed event fires. From there you can chain it into any Make scenario.

Setup

1

Create a scenario with a Custom webhook

In Make, create a new scenario. Add a Webhooks → Custom webhook module as the trigger. Click Add to create a new webhook and copy the URL (starts with https://hook.eu2.make.com/… or similar).
2

Add the Make integration in Feedal

Go to Integrations → New integration → Make. Paste the webhook URL and save.
3

Attach to a form and test

Attach the integration to a form from the Connect tab. Click Test to fire a sample delivery. Make will detect the data structure and you can map fields to your next module.
FieldRequiredDefaultDescription
NameYesA label for this integration
Webhook URLYesThe custom webhook URL from your Make scenario
Include answersOnInclude answer fields in the payload

Payload format

Feedal sends the same flat key-value JSON object as the Zapier integration:
{
  "form_id": "uuid",
  "form_slug": "customer-feedback",
  "form_title": "Customer feedback",
  "session_id": "uuid",
  "submitted_at": "2026-03-17T10:03:24Z",
  "duration_seconds": 204,
  "total_score": 42,
  "event": "session.completed",
  "answer__node_abc123": "Jane Smith",
  "answer__node_def456": "9"
}
Each answer is prefixed with answer__ and the node ID.

Next steps

Zapier

Same setup pattern for Zapier.

Webhook

Connect directly without a middleware platform.