Zapier & Make
Formstork forwards every submission to any URL as a webhook, so you can route submissions into Zapier (6,000+ apps) or Make in a couple of minutes, no code. Use it to add rows to Airtable, create Trello cards, send SMS, push to a CRM, and anything else those platforms reach.
Connect with Zapier
- In Zapier, create a new Zap and choose Webhooks by Zapier → Catch Hook as the trigger. Copy the custom webhook URL Zapier gives you.
- In your Formstork dashboard, open your form’s Settings → Forwarding and paste the URL into the Webhook URL field. Save.
- Submit your form once. In Zapier, click Test trigger and your submission appears, with every field under
data. - Add any action step (Airtable, Google Sheets, Slack, HubSpot, Notion, SMS…) and map the
data.*fields. Turn the Zap on.
Connect with Make
- In Make, add a Webhooks → Custom webhook module and copy its address.
- Paste it into your form’s Webhook URL in Formstork and save.
- Submit the form once so Make can read the data structure, then build the rest of your scenario.
Payload
Every webhook is a POST with this JSON body:
{
"submissionId": "…",
"formLabel": "Contact form",
"data": { "name": "Ada", "email": "ada@example.com", "message": "Hi!" },
"createdAt": "2026-07-10T09:00:00.000Z"
}
Your form’s fields are all under data. In Zapier/Make, map data.name, data.email, and so on.
Verifying the request (optional)
Every webhook carries an X-Formstork-Signature: sha256=<hmac> header. Zapier and Make don’t verify it for you, but if you route through your own endpoint first you can. See Integrations → Webhooks for the verification snippet.
Reliability
Formstork delivers webhooks through a durable queue with automatic retries and exponential backoff, so a momentary blip at Zapier or Make won’t drop your submission. It’s retried until it lands.