NBForms

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

FieldDescription
Make Webhook URLThe webhook URL from a Custom Webhook module. Format: https://hook.eu1.make.com/…

Setup

1. Create a scenario with a Custom Webhook trigger

  1. In Make, click Create a new scenario.
  2. Click the + trigger button and search for Webhooks.
  3. Choose Custom Webhook as the module.
  4. Click Add to create a new webhook, give it a name, and click Save.
  5. Copy the webhook URL shown.

2. Add the integration

  1. Open your form → IntegrationsAdd next to Make.
  2. Paste the webhook URL.
  3. Save.

3. Determine the data structure

  1. Submit your form once to send a test payload to Make.
  2. 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.
  3. 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.

On this page