Make + FirstFiveMin
Forward leads from any Make scenario.
Make (formerly Integromat) can forward a lead from any scenario with one HTTP module. FirstFiveMin captures it the moment the scenario runs.
Endpoint
POST https://firstfivemin.com/api/speed-to-lead/channel-inbound.php
Steps
- In FirstFiveMin, open Integrations → Connections and create a connection key with "Send leads in". Copy it — it is shown once.
- In Make, add an HTTP "Make a request" module after your trigger.
- Method POST, URL as shown below, body type Raw with content type JSON (application/json).
- Add a header: Authorization = Bearer <your key>.
- Build the JSON body from the sample below, mapping your trigger's fields. Use the bundle's unique ID as idempotency_key so a re-run never duplicates a lead.
- Only include the consent block if the scenario's source genuinely records consent to be contacted — read the consent note below.
- Run the scenario once: a successful send returns 201 with a lead_id.
About the consent block
Only fill in the consent block if the person actually agreed to be contacted, and you can produce the record that proves it. Leave it out and we still capture the lead — we just will not have the AI call them.
Sample payload
{
"source": "api",
"first_name": "Casey",
"last_name": "Sample",
"phone": "+15550170002",
"email": "casey.sample@example.invalid",
"property_ref": "New inquiry from the intake scenario",
"language": "en",
"source_event_at": "2026-08-27T15:04:05Z",
"idempotency_key": "make-recipe-example",
"consent": {
"source": "Intake form with contact-consent checkbox",
"reference": "submission record #5678",
"captured_at": "2026-08-27T15:04:05Z"
}
}