Sign Customiser

Webhook subscriptions

Update a webhook subscription

Copy page

Applies an RFC 7396 JSON Merge Patch to topic and/or url. Omitted fields remain unchanged; null, read-only, and unknown fields are rejected. Requires webhooks:write and an Idempotency-Key.

PATCH/api/v3/webhook-subscriptions/{webhook_id}

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: webhooks:write

Path parameters

webhook_idstringpathrequired

The canonical subscription ID.

Example: 1

Request body

topicstringbody
urlstringbody

Request body example

application/json
{
  "topic": "order:created",
  "url": "https://example.com/webhooks/sign-customiser-v2"
}
Update a webhook subscription
curl https://web.signcustomiser.com/api/v3/webhook-subscriptions/1 \
  --request PATCH \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "topic": "order:created",
  "url": "https://example.com/webhooks/sign-customiser-v2"
}'
Response
{
  "data": {
    "object": "webhook_subscription",
    "id": 42,
    "topic": "order:created",
    "url": "https://example.com/webhooks/sign-customiser-v2",
    "created_at": "2026-07-22T00:00:00Z",
    "updated_at": "2026-07-22T00:05:00Z"
  },
  "links": {
    "self": "https://web.signcustomiser.com/api/v3/webhook-subscriptions/42",
    "documentation": "https://www.signcustomiser.com/help/api/"
  },
  "meta": {
    "api_version": "v3",
    "request_id": "req_01jz9x2k7c8f3m5n6p7q8r9s0t"
  }
}