Skip to main content
DELETE
/
v1
/
api
/
webhooks
Delete a webhook
curl --request DELETE \
  --url https://backend.blooio.com/v1/api/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "webhook_url": "https://example.com/mywebhook"
}'
{
  "success": true,
  "message": "Webhook deleted"
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header as Bearer YOUR_API_KEY.

Body

application/json
webhook_url
string<uri>
required

The webhook URL to delete.

Example:

"https://example.com/mywebhook"

Response

Webhook deleted successfully.

success
boolean
message
string