Native

Make (Integromat) Integration

Send every submission to a Make scenario via a native webhook URL

Static Forms has a built-in Make integration. Paste the URL of a Make Custom webhook into a form's Delivery settings and every submission is POSTed to your scenario as JSON — no Zapier, relay, or self-hosted bridge required.

Pro & Agency Feature

The Make / n8n integration is available on the Pro and Agency plans (including their trials). It is not available on the Free plan. Upgrade your plan to unlock it.

How It Works

  • You configure the webhook per form on that form's Delivery settings page — not in global settings.
  • Each submission is POSTed as a JSON payload to your Make Custom webhook URL.
  • The provider (Make vs n8n) is auto-detected from the URL — you paste one URL into the same Make / n8n card.
  • Delivery is fire-and-forget in the background: it never blocks the submission, and your normal email forwarding still happens as usual.
  • The last delivery error (if any) is recorded and shown on the card for troubleshooting.

Setup

1

Create a Scenario with a Custom webhook

Log in to Make and click Create a new scenario. Add a Webhooks module and choose Custom webhook as the trigger.

  1. Click Add to create a new webhook and give it a name.
  2. Click Save to generate the webhook URL.
  3. Copy the generated webhook URL — it is an https:// address on a Make domain (for example hook.eu1.make.com/...).
2

Open the form's Delivery settings

In Static Forms, go to Forms, select the form you want to wire up, click Edit, then open the Delivery tab. Find the Make / n8n card.

3

Paste the webhook URL and save

Paste your Make webhook URL into the Webhook URL field and save. The card shows a masked hint of the saved URL and the detected provider (Make).

4

Send a test

Click Send test to fire a sample submission payload at your scenario. Run the scenario once in Make so it captures the payload and you can map the data structure to downstream modules.

5

Add downstream modules

Once Make has the data structure, add modules to process each submission — Data Stores, Tools for transformation, HTTP calls, or any of Make's 1,000+ app connectors.

The webhook URL must be a public HTTPS endpoint

For security, the URL must use https:// and resolve to a public host. Static Forms blocks private, loopback, internal, and link-local hosts (SSRF protection), so localhost, *.local, *.internal, and private IP ranges (10.x, 172.16–31.x, 192.168.x, 127.x, 169.254.x) are rejected. Make's hosted webhook URLs are public HTTPS endpoints and work out of the box.

Payload Shape

Each submission is delivered as a flat JSON envelope: a stable top-level shape (event, source, submissionId, submittedAt, submittedAtIso, accountId, accountEmail) plus a formData object containing the raw submitted fields. See the Webhook Payload Reference for the full structure.

Additional Resources