Integrations

Zapier & Make

Not a published app yet — but the webhook system underneath both platforms' generic Webhooks action already does everything a native trigger would.

No native app — works today via webhooks

Connect it in three steps

  1. 1. Get a catch-hook URL.In Zapier, start a Zap with the “Webhooks by Zapier” trigger → “Catch Hook”, and copy the URL it gives you. In Make, add a “Webhooks” module → “Custom webhook” and copy its URL.
  2. 2. Register it in Leadflowly. Go to Integrations → Webhooks and add that URL as an endpoint. You'll get a signing secret back — save it.
  3. 3. Verify the signature (recommended). Every request carries an X-Leadflowly-Signature header — sha256=<hmac>of the raw body, keyed with your secret. In Zapier or Make, a “Code” step can check it before the rest of the Zap runs, so a spoofed request never reaches the actions after it.

Events you can trigger on

Every enabled endpoint receives all four — filter by the event field in the payload inside your Zap or scenario.

lead.capturedA new lead finishes the capture flow
lead.stage_changedA lead moves to a different pipeline stage
lead.scoredThe AI finishes scoring a lead
link.clickedSomeone taps a tracked link in an outbound message

If a delivery fails

Deliveries retry with backoff for up to six attempts before being marked dead. The Webhooks console shows every attempt and lets you replay one — nothing fails silently.

Want the fuller REST API instead — reading data, not just reacting to events? See the API reference.