Delete the workspace webhook
Stops workspace-wide delivery and discards its signing secret.
HTTP request
DELETE https://www.asqiro.com/api/v1/webhooks
An API key created by a workspace member who can edit. A viewer's key answers 403.
Response body
A successful call returns 204 with an empty body.
Note Survey webhooks are untouched. A survey that has its own endpoint keeps receiving events there.
Errors
- unauthorized · 401 · The API key is missing, malformed, deleted, or its creator lost workspace access. Check the Authorization header, then the key itself.
- forbidden · 403 · The key is valid but lacks the access this call needs - most often a read-only key attempting a write.
- plan_upgrade_required · 403 · The workspace owner's plan does not include API access. Upgrading the plan restores it; retrying will not.
- rate_limited · 429 · Too many requests. The Retry-After response header carries the number of seconds to wait.
Example request
bash
curl -X DELETE "https://www.asqiro.com/api/v1/webhooks" \
-H "Authorization: Bearer $ASQIRO_API_KEY" \
-iReturns 204 on success.
http
HTTP/1.1 204 No Content