Webhooks
Webhooks deliver real-time event notifications to any HTTP endpoint you control.
Endpoints
| Method | Path | Description |
|---|---|---|
| GET | /api/v1/webhooks | List webhooks |
| POST | /api/v1/webhooks | Create webhook |
| GET | /api/v1/webhooks/{webhook_id} | Get webhook |
| PUT | /api/v1/webhooks/{webhook_id} | Update webhook |
| DELETE | /api/v1/webhooks/{webhook_id} | Delete webhook |
| POST | /api/v1/webhooks/{webhook_id}/enable | Enable or disable |
| POST | /api/v1/webhooks/{webhook_id}/rotate-secret | Rotate signing secret |
| POST | /api/v1/webhooks/{webhook_id}/test | Send test event |
See the Webhooks Integration Guide for full documentation including payload format, signature verification, and retry policy.