Delete webhook
Webhooks
Delete Webhook
Deletes a webhook endpoint. This action is PERMANENT. The webhook will stop receiving events immediately.
DELETE
Delete webhook
Deletes a webhook endpoint. This action is PERMANENT. The webhook will stop receiving events immediately.
A successful deletion returns no response body, only a 204 status code.
Authentication
This endpoint requires authentication via Bearer token:- Authorization:
Bearer <token>
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
organizationId | string (UUID) | Yes | Organization ID |
id | string (UUID) | Yes | Webhook ID |
Permissions
Only OWNERS and ADMINS can delete webhooks.What Happens
When a webhook is deleted:- Webhook is permanently removed
- No more events will be sent to this URL
- The webhook will stop receiving events immediately
- This action cannot be undone
Example Request
Example Response
Common Errors
401 Unauthorized
Authentication required.403 Forbidden
Only owners and admins can delete webhooks.404 Not Found
Webhook not found.Best Practices
Before deleting a webhook:- Disable it first - Set
isActive: falseto test without deleting - Check delivery history - Review recent deliveries
- Notify your team - Coordinate with developers using this webhook
- Document the change - Keep track of why it was removed