BetaThe V4 API is in beta — endpoints and functionality may change.
Webhooksv2

Delete a webhook

DELETE/webhooks/{webhookId}

Permanently delete a webhook.

Path parameters

webhookIdRequiredstring

Unique identifier of the webhook subscription, prefixed with wh_ (e.g. wh_abc123def456). Returned when you create or list webhooks.

Headers

AuthorizationRequiredstring

Your API key, sent as a bearer token: Authorization: Bearer <api_key>. Editing this stays in sync with the API key box on the right.

Bearer

Returns

successoptionalboolean
messageoptionalstring

Response codes

200Webhook deleted
401Authentication required or invalid
404Resource not found

Sends a live request with your values and shows the real response below. Your key is stored only in this browser.

Request
curl -X DELETE https://api.blooio.com/v2/api/webhooks/wh_abc123def456 \  -H "Authorization: Bearer bl_live_..."
Response objectexample
{  "success": false,  "message": "Webhook deleted"}