Sign Customiser

Webhooks

Get a single webhook

Copy page

Retrieve details for a specific webhook.

GET /api/v2/webhooks/{webhook_id}

Authorisation

Bearer token required. Include in the Authorization header.

Path parameters

webhook_id string path required

The ID of the webhook.

Example: 1

Get a single webhook
curl https://web.signcustomiser.com/api/v2/webhooks/1 \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "webhook": {
    "webhook_id": 1,
    "topic": "product:created",
    "url": "https://example.com/webhook",
    "status": "active",
    "secret": "abc123...",
    "meta": {},
    "created_at": "2024-01-01T00:00:00.000000Z",
    "updated_at": "2024-01-01T00:00:00.000000Z"
  }
}