Overview
Webhooks let your systems react to platform events without polling — for example creating a CRM task when a call is qualified.
Requirements
- An HTTPS endpoint reachable from the public internet
- Ability to respond within a few seconds with a 2xx status
- Somewhere to store the signing secret
Configuration
- Register the endpoint URL
- Select event types
- Store the signing secret and verify every request
- Return 2xx quickly and process asynchronously
Troubleshooting
- Duplicate events — deduplicate on event id
- Signature mismatch — verify against the raw request body, not the parsed JSON
- Timeouts — acknowledge first, process later
Current status
In development
Event contracts are not final. Do not ship production consumers yet.