WundertreOS

Delete webhook subscription

Unsubscribe from events by deleting a webhook subscription.

DELETE/api-webhook-subscriptions/:id
Try it
DELETE

Create an API key in your workspace under Settings → Integrations & API.

Path
:id
Query
None.

Requires both webhooks:read and webhooks:write scopes (every /api-webhook-subscriptions request checks webhooks:read first, then DELETE additionally checks webhooks:write). Implements the Zapier REST Hooks unsubscribe contract.

Path parameters

Path
NameTypeDescription
idrequireduuidThe webhook subscription ID. Must belong to the caller's organization.

Example request

bash
curl -X DELETE \
  'https://api.wundertreos.com/functions/v1/api-webhook-subscriptions/a1b2c3d4-1111-2222-3333-444455556666' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'

Response

Returns 204 No Content on success. 404 not_found if no subscription with that ID exists in your organization.