Convo
API ReferenceWebhooks

Delete webhook

Revoke and delete a webhook by ID.

DELETE
/api/v1/webhooks

Authorization

AuthorizationRequiredBearer <token>

API key as Bearer token. Generate keys in your Convo dashboard settings.

In: header

Request Body

application/jsonRequired
idRequiredstring

Webhook ID to delete

curl -X DELETE "https://www.itsconvo.com/api/v1/webhooks" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "id": "string"
  }'

Webhook deleted