Sign Customiser

Webhooks

List all webhooks

Copy page

Get a list of all webhooks for the current organisation.

GET /api/v2/webhooks

Authorisation

Bearer token required. Include in the Authorization header.

List all webhooks
curl https://web.signcustomiser.com/api/v2/webhooks \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
Response 200
{
  "webhooks": [
    {
      "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"
    }
  ]
}