Webhooks
Webhooks let your backend receive event notifications when key actions happen on your account.Delivery model
- Events are delivered with an HTTP
POSTrequest to your configured endpoint - Your endpoint should return
2xxquickly after validation - Process events asynchronously to avoid timeouts
Receiver checklist
- Use HTTPS endpoints only
- Verify incoming payload integrity before processing
- Make handlers idempotent (safe to retry)
- Log webhook event IDs for traceability