Webhook events

GET /webhook-events

List every event name a webhook can subscribe to. Useful for building a subscription picker without hardcoding the list.

Requires the webhooks:read permission.

Request
curl \
  "https://api.cascade.dev/webhook-events" \
  -H "Authorization: Bearer sk_YOUR_SECRET_KEY"
Response
{
  "data": ["customer.updated"]
}