Console
Webhooks
Manage webhook endpoints and view delivery history under Integrations.
Webhooks
The Webhooks section (/integrations/webhooks) lets you manage webhook endpoints and monitor event delivery.
Endpoint List
View all webhook endpoints with their URL, subscribed events, and delivery status.
Creating an Endpoint
- Navigate to Integrations → Webhooks → New Endpoint
- Fill in:
- URL — Your webhook receiver endpoint
- Events — Select which events to subscribe to
- Click Create
Delivery History
Navigate to Webhooks → History (/integrations/webhooks/history) to see:
- All delivery attempts (successful and failed)
- HTTP status codes
- Request and response payloads
- Retry information
- Timestamps
Managing Endpoints
From the endpoint list, you can:
- Edit — Update URL or subscribed events
- Delete — Remove an endpoint
- View deliveries — See delivery history for a specific endpoint
API Equivalent
| Action | Endpoint |
|---|---|
| List Endpoints | GET /api/webhooks |
| Create | POST /api/webhooks |
| Update | PUT /api/webhooks/{id} |
| Delete | DELETE /api/webhooks/{id} |
| Delivery History | GET /api/webhooks/history |

