Skip to main content
PUT
Update a webhook subscription

Authorizations

Authorization
string
header
required

JWT bearer token issued by the identity provider.

Path Parameters

id
string
required

Subscription id (UUID).

Example:

"0190b5a0-0000-7000-8000-0000000000aa"

Body

application/json
active
boolean | null

Activation flag; a pointer so null/omitted leaves the stored value unchanged.

Example:

true

description
string

New description; omitted leaves the stored value unchanged.

Example:

"Primary settlement consumer"

events
string[] | null

Replacement event-type list; omitted leaves the stored list unchanged.

Example:
headers
object

Replacement static HTTP headers; omitted leaves the stored headers unchanged.

secret
string

New raw signing secret; when present it rotates the signing secret (rehashed, never stored in cleartext). Omitted leaves it unchanged.

timeoutSeconds
integer<int32>

New per-delivery HTTP timeout in seconds; zero or omitted leaves it unchanged.

Example:

10

url
string<uri>

New HTTPS endpoint; omitted leaves the stored value unchanged.

Example:

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

Response

OK

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"