Event categories
- Record Webhooks: Payloads for record created, updated, and deleted events.
- Note Webhooks: Payloads for note created, updated, and deleted events.
- Task Webhooks: Payloads for task created and completed events.
- Relation Webhooks: Payloads for relation added and removed events.
- Call Webhooks: Payloads for call linked and unlinked events.
- File Webhooks: Payloads for file uploaded and deleted events.
Create an endpoint
- Open Breakcold.
- Go to Settings.
- Open Webhook.
- Open Send.
- Click New outbound webhook.
- Enter your HTTPS endpoint URL.
- Select the events you want to receive.
- Optionally filter deliveries to specific object types.
- Copy the signing secret.
Delivery
Breakcold sends each webhook as an HTTPPOST request with a JSON body. Your endpoint should return any 2xx status when it accepts the delivery.
If delivery fails, Breakcold retries up to 3 attempts total. Retries currently run after about 5 seconds and then 30 seconds. Requests time out after 10 seconds. Endpoints are disabled after 50 consecutive delivery failures.
Delivery logs are kept for 30 days.
Headers
Each delivery includes these headers.Verify signatures
Use the endpoint signing secret to verify that a request came from Breakcold. The signed string is${timestamp}.${rawBody}, where timestamp is the X-Webhook-Timestamp header and rawBody is the exact request body string.
Payload envelope
Every event uses the same envelope.Test event
The endpoint test button sends awebhook.test event with a valid signature. Use it to confirm that your endpoint is reachable and that signature verification works.