Managing endpoints
Create endpoints in Settings → Integrations → Webhooks, or via the Public API (POST /public/webhooks). Creating an endpoint returns a signing secret once — store it; it’s not shown again.
Your HTTPS endpoint (max 1000 chars).
Event types to subscribe to (see the vocabulary below).
A label for the endpoint.
Event vocabulary
All 29 event types
All 29 event types
Delivery & signature
Each delivery carries these headers:1
Verify the signature
Compute
HMAC-SHA256(rawBody, signingSecret) and compare (constant-time)
against the X-Sender-Signature header’s hex digest.2
Respond 2xx quickly
Acknowledge fast and process asynchronously.
3
Handle retries
Failed deliveries retry 5 times with backoff, then dead-letter. Deliveries
are at-least-once — dedupe on
X-Sender-Delivery.Signature verification example
Prefer Make.com for no-code consumption of these events — the
Make integration manages the subscription
lifecycle for you.

