Skip to main content
Outbound webhooks push events from Senderz to your systems. Subscribe an endpoint to the events you care about and receive a signed POST whenever one fires.

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.
url
string
required
Your HTTPS endpoint (max 1000 chars).
events
string[]
required
Event types to subscribe to (see the vocabulary below).
name
string
A label for the endpoint.

Event vocabulary

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.