Delete an endpoint
DELETE
/v1/webhooks/{id}Secret key — sk_… or sk_test_… · Base URL https://api.volanea.com
Removes the endpoint and its entire delivery history.
Deliveries queued for retry are dropped with it, so nothing further reaches that URL. If you want to stop deliveries but keep the log — and the option of turning it back on — PATCH enabled: false instead.
Path parameters
idstringrequiredEndpoint id.
Response
Deleted.
successbooleanrequired
Errors
Every failure returns the standard envelope — branch on `code`, never on the wording of `error`.
401Missing or invalid API key.404Not found.422Request validation failed (code `validation_error`, 422).
Request
curl https://api.volanea.com/v1/webhooks/id_123 \
-X DELETE \
-H "Authorization: Bearer sk_..."Response
200 · application/json
{
"success": true,
"data": {
"success": true
}
}92 endpoints · OpenAPI document