> ## Documentation Index
> Fetch the complete documentation index at: https://docs.beachdepository.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Webhooks

> List all webhook subscriptions for the organization

Returns all webhook subscriptions for the organization. The signing secret is never included in list responses.

**Permission:** `webhooks:manage`

## Response

```json theme={null}
{
  "data": [
    {
      "_id": "wh_abc123",
      "name": "Inventory Notifications",
      "url": "https://example.com/webhooks/purevault",
      "events": ["inventory.received", "outbound_shipment.delivered"],
      "status": "active",
      "secretPrefix": "whsec_d4d6eb90...",
      "createdByMemberId": "member_abc123",
      "createdAt": 1709654321000,
      "updatedAt": 1709654321000
    }
  ]
}
```

<Note>
  Webhook subscriptions are identified by `_id` (not `id`), and the full `signingSecret` is never returned here — only the non-secret `secretPrefix`.
</Note>
