Automation platforms
LiveSend form submissions to Zapier, Make or n8n
When the destination is something we don't support natively, an automation platform bridges the gap. All three of these accept a plain JSON POST at a URL they generate, so a WebForms webhook destination plugs straight in and your submission becomes the trigger for whatever workflow you build.
What lands in Zapier, Make and n8n
- A JSON POST to the catch hook URL, triggering instantly
- Every field available for mapping in the workflow builder
- Metadata and spam verdict included for conditional branching
- Retries with backoff if the platform is briefly unavailable
Setup
Create a catch hook
In Zapier pick Webhooks by Zapier then Catch Hook. In Make use a Custom Webhook. In n8n add a Webhook node. Copy the URL each one gives you.
Add it as a destination
Paste the URL into a Zapier, Make or n8n destination on your form in the dashboard.
Send a test and map the fields
Fire a test submission so the platform captures a sample payload, then map the fields onto whatever comes next in your workflow.
Zapier, Make and n8n example
Swap in your own endpoint and these run as-is.
The shape your Zap, scenario or workflow receives.
{
"id": "sub_2f9x...",
"formId": "frm_8a1c...",
"createdAt": "2026-03-04T10:12:44.019Z",
"data": {
"name": "Ada Lovelace",
"email": "ada@example.com",
"company": "Analytical Engines Ltd",
"budget": "25000"
},
"meta": { "country": "GB", "referrer": "https://example.com/pricing" },
"spam": { "score": 0.02, "quarantined": false }
}Worth knowing
- Trigger on delivery rather than polling for new rows: the workflow runs the moment a submission arrives, and you don't burn tasks on empty checks.
- Quarantined spam never fans out, so you aren't paying task cost to process junk.
Zapier, Make and n8n form FAQ
Create a Catch Hook in Zapier, copy the URL, and add it as a Zapier destination on your form. Submissions POST to it immediately, and Zapier captures a sample you can map from.
Yes. Make's Custom Webhook and n8n's Webhook node both accept the same JSON POST. Add whichever destination matches the platform you use.
You keep your own markup, styling and validation, plus layered spam filtering before anything reaches Zapier - so you don't spend tasks processing spam.
One task per delivered submission, on the platform's side. Because filtering happens before delivery, quarantined spam costs you nothing.
Other destinations
Send your next form submission to Zapier, Make and n8n
Free for 300 submissions a month. Endpoint in under a minute, no card required.
Start free