Update a webhook endpoint
Notification Webhooks
Update a webhook endpoint
Update a webhook endpoint. This is a partial update — supply only the fields you want to change. At least one field is required.
Use this to activate a newly-created endpoint ("active": true), repoint its url, or
change which event_categories it is subscribed to. Updating event_categories replaces
the full subscription set (it is not additive).
Body (all optional, at least one required)
url— a valid HTTPS URL.event_categories— non-empty array of event categories; replaces the current set.active—trueto start receiving deliveries,falseto pause them.
An empty body, or any unknown field, is rejected with 400.
Example
PATCH /v1/notifications/webhooks/whr_01HXYZABC1234567890ABCDEFG
{
"active": true,
"event_categories": ["onramp", "offramp", "kyc"]
}
PATCH
Update a webhook endpoint
Authorizations
API key issued during merchant onboarding.
Path Parameters
Pattern:
[^\/#\?]+?Body
application/json
UpdateWebhookEndpointDto