Skip to main content
DELETE
/
exo-api
/
webhooks
/
{id}
Delete a subscription
curl --request DELETE \
  --url https://api.example.com/exo-api/webhooks/{id}
Permanently deletes a webhook subscription. No further events will be delivered to the subscription’s URL.

Path parameters

id
integer
required
The webhook subscription ID.

Request

curl -X DELETE \
     -H "Authorization: Bearer YOUR_TOKEN" \
     https://your-app.com/exo-api/webhooks/1

Response

Returns 204 No Content with an empty body on success.

Errors

StatusDescription
404Subscription not found or does not belong to the authenticated user
If you want to temporarily stop receiving webhooks without losing your subscription, toggle is_active through the dashboard instead of deleting.