# GET List all webhooks

Get a list of all webhooks for the current organisation.

- Source URL: https://www.signcustomiser.com/help/api/get-list-all-webhooks/
- Markdown URL: https://www.signcustomiser.com/help/api/get-list-all-webhooks.md
- Group: Webhooks
- Method: GET
- Path: /api/v2/webhooks
- Auth: Bearer token

## cURL example

```bash
curl https://web.signcustomiser.com/api/v2/webhooks \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN'
```

## Response examples

### 200 GET 200 example 1

```json
{
  "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"
    }
  ]
}
```
