NodumForms' webhook can trigger any Zap or Make scenario directly — no native app required.
Quick setup in Zapier
- Create a new Zap.
- Pick Webhooks by Zapier as the trigger app, then Catch Hook.
- Zapier gives you a unique webhook URL — copy it.
- In NodumForms, open the form → Settings → paste the URL into Webhook URL → save.
- Submit one test response so Zapier can capture the payload schema.
- Add any action — Google Sheets row, Slack message, HubSpot contact, anything Zapier supports.
Quick setup in Make (Integromat)
- Create a new scenario.
- Add the Webhooks → Custom webhook module as the trigger.
- Click Add to generate a webhook URL; copy it.
- Paste it into the form's Webhook URL field.
- Submit a test response so Make can learn the schema.
Common recipes
New response → Google Sheets row
Map each answer.value to a column. Useful for keeping a master spreadsheet of submissions.
New response → Slack message
Format a friendly summary like "New {formTitle} submission from {answers[0].value}". Drop it in a #signups channel.
New response → CRM contact Push the email + name fields into HubSpot / Salesforce / Pipedrive as a new lead.
New response → custom backend Use webhook.site or your own endpoint to ingest responses directly into your product database.
Tips
- Trigger one test submission with realistic data so Zapier/Make can infer field types correctly.
- For lists (multi-select / file uploads), Zapier exposes them as arrays — most actions can join them into comma-separated strings if needed.
- If submissions stop firing, check that the Zap is on and that your webhook URL hasn't expired (Zapier rotates URLs when you regenerate them).