Skip to main content
POST
Register a webhook subscription

Authorizations

Authorization
string
header
required

JWT bearer token issued by the identity provider.

Body

application/json
events
string[] | null
required

Business event types this subscription is delivered.

Example:
url
string<uri>
required

HTTPS endpoint that receives webhook deliveries for the request tenant.

Example:

"https://client.example.com/webhooks/slc"

active
boolean

Whether the subscription is active and eligible for delivery.

Example:

true

description
string

Optional human-readable label for the subscription.

Example:

"Primary settlement consumer"

headers
object

Optional static HTTP headers added to every delivery request to this endpoint.

secret
string

Raw signing secret used only to derive the SHA-256 HMAC signing key; never persisted or echoed in cleartext. In BYOC the real signing secret comes from the client's Kubernetes Secret.

timeoutSeconds
integer<int32>

Optional per-delivery HTTP timeout in seconds; omitted or zero applies the service default (10s).

Example:

10

Response

Created

active
boolean
required

Whether the subscription is active and eligible for delivery.

Example:

true

createdAt
string<date-time>
required

Subscription creation timestamp (RFC3339, UTC).

Example:

"2026-06-15T07:50:00Z"

events
string[] | null
required

Business event types this subscription is delivered.

Example:
failureCount
integer<int64>
required

Cumulative count of failed delivery attempts.

Example:

3

id
string
required

Subscription id (UUID).

Example:

"018f8a3e-4b2c-7c1a-9e5d-2f6a1b3c4d5e"

lastDeliveryAt
string<date-time> | null
required

Timestamp of the most recent delivery attempt (RFC3339, UTC); null when none has occurred.

Example:

"2026-06-15T07:50:00Z"

lastDeliveryStatus
integer<int32> | null
required

HTTP status code of the most recent delivery attempt; null when none has occurred.

Example:

200

successCount
integer<int64>
required

Cumulative count of successful deliveries.

Example:

128

updatedAt
string<date-time>
required

Subscription last-update timestamp (RFC3339, UTC).

Example:

"2026-06-15T07:50:00Z"

url
string
required

HTTPS endpoint that receives webhook deliveries.

Example:

"https://client.example.com/webhooks/slc"

description
string

Human-readable label for the subscription.

Example:

"Primary settlement consumer"