Delete Webhook
Permanently deletes a webhook. All future event deliveries to this endpoint are stopped immediately.
DELETE
/api/v1/webhooks/:idRequires authenticationImmediate effect
Deleting a webhook stops all future deliveries immediately. Any in-flight retries for that webhook will also be cancelled.
Path parameters
idstringREQUIREDWebhook 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 deletionErrors
NOT_FOUND (404)errorOPTIONALWebhook not found or belongs to another user