Sign Customiser

Webhook subscriptions

Get a webhook subscription

Copy page

Returns one Store-scoped subscription without its signing secret or provider metadata. Requires webhooks:read and is safe to retry.

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

Authorisation

Bearer token required. Include it in theAuthorization header.

Required scope: webhooks:read

Path parameters

webhook_idstringpathrequired

The canonical subscription ID.

Example: 1

Get a webhook subscription
curl https://web.signcustomiser.com/api/v3/webhook-subscriptions/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response
{
  "data": {
    "object": "webhook_subscription",
    "id": 42,
    "topic": "product:created",
    "url": "https://example.com/webhooks/sign-customiser",
    "created_at": "2026-07-22T00:00:00Z",
    "updated_at": "2026-07-22T00:00: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"
  }
}