Skip to main content
Manage the endpoints that receive Senderz outbound webhooks. All endpoints use the X-Sender-Tenant + X-API-Key headers.

List endpoints

Returns a raw array (not paginated) of endpoints:
id
string
Endpoint UUID.
name
string
Label.
url
string
Delivery URL.
events
string[]
Subscribed event types.
active
boolean
Whether it’s active.
createdAt
string

Create an endpoint

url
string
required
HTTPS delivery URL (max 1000).
events
string[]
required
Non-empty list of event types from the vocabulary.
name
string
Label (max 255).

Response

Returns the endpoint object plus the signing secret — shown once:
signingSecret
string
Used to verify the X-Sender-Signature HMAC on every delivery. Store it now; it’s never returned again.

Delete an endpoint

Returns 204 No Content.
For the delivery format and signature verification, see Outbound webhooks. For no-code consumption, the Make integration manages this lifecycle for you.