What this does
Outbound webhooks send a JSON payload to an external URL whenever a CRM event occurs. This lets you connect Relentify to thousands of other tools.
When to use it
Use webhooks to integrate with tools that aren't natively supported — push data to Zapier, Make, n8n, or your own backend.
Step by step
- Go to Settings > Automation
- Create or edit a workflow rule
- Add a Send Webhook action
- Enter the Webhook URL — the endpoint that will receive the data
- Choose which data to include in the payload:
- Contact details
- Deal details
- Activity details
- Optionally add custom headers (e.g. for authentication)
- Click Save
Payload format
{
"event": "deal.won",
"timestamp": "2026-04-07T10:30:00Z",
"data": {
"deal": { "id": "...", "name": "...", "value": 5000 },
"contact": { "id": "...", "name": "...", "email": "..." }
}
}
Tips
- Test your webhook URL with a tool like webhook.site before going live
- Failed webhooks are retried up to 3 times
- Check the automation log to debug webhook delivery issues