Custom webhooks
DeltaLead posts an HTTPPOST request to your endpoint whenever a lead event occurs. This section covers the outbound direction only — to push leads the other way, from your system into DeltaLead, see the Custom Webhook. You configure which events trigger a webhook, and DeltaLead delivers the payload in real time — typically within a few seconds of the event.
Supported events
Example webhook payload
Below is an example payload for thelead.qualified event:
Setting up a webhook
1
Open Webhook settings
In DeltaLead, go to Settings → Webhooks and click Add Endpoint.
2
Enter your endpoint URL
Provide the HTTPS URL where DeltaLead should deliver payloads. HTTP endpoints are not accepted — your endpoint must use TLS.
3
Select events
Choose which events should trigger this webhook. You can configure multiple endpoints, each listening to a different set of events.
4
Save and copy your webhook secret
DeltaLead generates a webhook secret for each endpoint. Save it securely — you’ll use it to verify incoming payloads on your server.
Payload verification
DeltaLead signs every webhook payload using HMAC-SHA256 with your webhook secret. The signature is included in theX-DeltaLead-Signature header of each request. Verify this signature on your server before processing the payload to ensure the request is genuinely from DeltaLead and hasn’t been tampered with.
Zapier and Make
DeltaLead provides native connectors for both Zapier and Make (formerly Integromat), so you can build automated workflows without writing any code.- Trigger your Zap or scenario when a lead is created or qualified in DeltaLead.
- Push data to any of the thousands of apps available in Zapier and Make — CRMs, spreadsheets, project management tools, communication platforms, and more.
- Multi-step workflows — chain multiple actions together. For example: when a lead is qualified → create a deal in Pipedrive → send a Slack message to the assigned seller → add a row to Google Sheets.
Also available via API
For full programmatic control over leads, conversations, scores, campaigns, and more, use the DeltaLead REST API.REST API Reference
Authenticate with your
X-API-Key header and access all DeltaLead resources at https://platform-api.deltalead.ai/v1. Full endpoint reference, request/response schemas, and code examples available.