Make
Trigger a Make (ex-Integromat) scenario with each form submission.
The Make integration sends each submission to a Make scenario's custom webhook, so you can route form data through any of Make's connected apps.
Setup
- In Make, create a scenario whose trigger is Webhooks → Custom webhook,
add a hook, and click Copy address to clipboard (the URL looks like
https://hook.eu1.make.com/…— the region part varies). - In Formiary, open the form, go to its Integrations tab, click Add integration, and choose Make.
- Paste the webhook URL and save.
- Click Send test event while the Make scenario is listening ("Run once") so Make can determine the data structure, then map the fields in your scenario's modules.
Payload
Make receives the same flat JSON payload as Zapier
— submission fields arrive under fields, keyed by field name:
{
"event": "submission.created",
"formId": "…",
"submissionId": "…",
"timestamp": "2026-07-11T12:34:56Z",
"test": false,
"fields": {
"email": "[email protected]",
"message": "Hello!"
}
}
Test events have "test": true and a null submissionId.