Delete Webhook

Permanently deletes a webhook. All future event deliveries to this endpoint are stopped immediately.

DELETE/api/v1/webhooks/:idRequires authentication
Immediate effect
Deleting a webhook stops all future deliveries immediately. Any in-flight retries for that webhook will also be cancelled.

Path parameters

idstringREQUIRED
Webhook identifier (UUID)
Request examples
curl -X DELETE https://merx.exchange/api/v1/webhooks/wh_abc123 \
  -H "Authorization: Bearer your_jwt_token"

Response

200Webhook deleted
{
  "deleted": true
}

Response fields

deletedbooleanConfirmation of deletion

Errors

NOT_FOUND (404)errorOPTIONAL
Webhook not found or belongs to another user