Deel Flows

Integrations

Make

Use Deel Flows in Make scenarios with the generic HTTP and Webhooks modules — no custom app required.

Trigger: receive events

Add a Webhooks → Custom webhook module, copy its URL, then subscribe it to your workspace:

curl
curl -X POST https://app.deelflows.com/api/v1/webhooks \
  -H "Authorization: Bearer df_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://hook.eu1.make.com/…", "events": ["message.received"] }'

Every inbound WhatsApp message now starts your scenario with the payload described in the webhooks reference.

Actions: call the API

Use the HTTP → Make a request module with your API key in the Authorization header:

  • POST /api/v1/contacts — upsert a contact.
  • POST /api/v1/events — track an event.
  • POST /api/v1/transactional — send a template message.

Cleaning up

When you retire a scenario, delete its subscription with DELETE /api/v1/webhooks/:id so we stop posting to the dead URL.

Make integration — Deel Flows Docs