WAHooks
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

HeaderTypeRequiredDescription
AuthorizationstringYesBearer token. Format: Bearer <token>

Path Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the webhook configuration to delete.

Response

200 OK
{
  "success": true
}
401 Unauthorized
{
  "statusCode": 401,
  "message": "Unauthorized"
}
404 Not Found
{
  "statusCode": 404,
  "message": "Webhook not found"
}

On this page