Full control with custom webhooks. Send leads to any HTTP endpoint with your own payload format. Perfect for custom systems and proprietary CRMs.
Define your own JSON payload structure using our template system.
HMAC signatures and custom headers for secure webhook verification.
Automatic retries with exponential backoff for failed deliveries.
{
"event": "lead.created",
"timestamp": "2024-01-15T10:30:00Z",
"lead": {
"id": "lead_abc123",
"first_name": "John",
"last_name": "Doe",
"email": "john@example.com",
"phone": "+1-555-123-4567",
"source": "Campaign Name",
"custom_fields": {
"property_type": "Residential",
"budget": "$500,000"
}
},
"buyer": {
"id": "buyer_xyz789",
"name": "Acme Real Estate"
}
}