Automations

Make.com Trigger Node

3 min readnode-make

Trigger a Make.com (formerly Integromat) scenario via a custom webhook and pass data to it.

Make.com Trigger Node

Sends a POST request to a Make.com custom webhook URL, passing any data you specify as the JSON body. The Make scenario receives the payload and continues its own flow.

When to use it
  • Trigger a Make scenario that updates a Google Sheet when a lead is qualified.
  • Hand off to Make for complex integrations FlowMaticX doesn't natively support.

---

Required fields
FieldTypeRequiredDescription
webhookUrlstringYesMake.com custom webhook URL (from your scenario's webhook module)
dataJSON objectYesData to send — {{variables}} and {{lead.xxx}} supported in values

---

Variables available

This node does not produce output variables.

---

How to get a Make webhook URL
  1. Open Make.com and create a new scenario.
  2. Add a Webhooks → Custom webhook module as the trigger.
  3. Click Add → give it a name → copy the URL shown.
  4. Paste it into the webhookUrl field of this node.

---

Step-by-step setup
  1. Create the Make scenario with a custom webhook trigger.
  2. Add a Make.com Trigger node to the automation canvas.
  3. Paste the webhook URL.
  4. Build the data object with the fields Make needs.
  5. Save and run a test — check Make's scenario history to confirm the payload arrived.

---

Example config

json { "webhookUrl": "https://hook.eu1.make.com/abc123xyz", "data": { "email": "{{lead.email}}", "name": "{{lead.firstName}} {{lead.lastName}}", "score": "{{variables.score}}", "source": "flowmaticx" } }

---

Tips & gotchas
  • Make webhooks accept any JSON structure — design the payload to match what your Make modules expect.
  • Make scenarios must be active (not paused) to receive webhooks.
  • For two-way communication (Make sends data back), use a Make → HTTP Request node to POST back to a FlowMaticX inbound webhook.