Events
Setting up a webhook
- Go to Developers → Webhooks
- Add your HTTPS endpoint URL
- Select the events to subscribe to
- Save your signing secret (shown once)
Payload format
Every delivery is a POST with this body:X-Conduit-Event, X-Conduit-Signature (HMAC-SHA256), and X-Conduit-Delivery.
Verifying signatures
Conduit signs each delivery with HMAC-SHA256 over the raw body using your secret. Always verify it. With the SDK:Delivery & retries
- 3 retry attempts with exponential backoff
- 10-second timeout per attempt
- Every attempt is logged in your delivery log
- A webhook auto-disables after 15 consecutive failures; re-enabling resets the counter
Test any webhook from the dashboard with the Test button — it sends a sample event to your endpoint.

