API ReferenceWebhooks
Delete Webhook
Delete a webhook configuration.
DELETE /api/webhooks/{id}
Permanently deletes the specified webhook configuration. Events will no longer be delivered to the configured URL. This action cannot be undone.
Authentication
| Header | Type | Required | Description |
|---|---|---|---|
Authorization | string | Yes | Bearer token. Format: Bearer <token> |
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
id | string | Yes | The unique identifier of the webhook configuration to delete. |
Response
{
"success": true
}{
"statusCode": 401,
"message": "Unauthorized"
}{
"statusCode": 404,
"message": "Webhook not found"
}