Make
Trigger a Make scenario on every new submission.
The Make integration (formerly Integromat) sends submission data to a Custom Webhook module in your Make scenario.
Required fields
| Field | Description |
|---|---|
| Make Webhook URL | The webhook URL from a Custom Webhook module. Format: https://hook.eu1.make.com/… |
Setup
1. Create a scenario with a Custom Webhook trigger
- In Make, click Create a new scenario.
- Click the + trigger button and search for Webhooks.
- Choose Custom Webhook as the module.
- Click Add to create a new webhook, give it a name, and click Save.
- Copy the webhook URL shown.
2. Add the integration
- Open your form → Integrations → Add next to Make.
- Paste the webhook URL.
- Save.
3. Determine the data structure
- Submit your form once to send a test payload to Make.
- Back in Make, click Re-determine data structure in the Custom Webhook module — it will parse the test submission and expose all fields as variables.
- Add downstream modules (e.g. insert a Google Docs row, send an email, create a Notion page) and activate the scenario.
Payload
NBForms sends a JSON POST:
{
"formId": 42,
"formName": "Contact",
"submittedAt": "2025-06-14T10:23:00.000Z",
"data": {
"name": "Sarah Chen",
"email": "[email protected]",
"message": "Hello!"
}
}All fields are available as mappable variables in your scenario modules.