DELETE
https://app.evoriqa.com/api/v1/webhooks/{feature}Delete a webhook endpoint
Removes the feature group's endpoint, so its events stop being delivered. Returns 404 when the group has none, rather than a fake success.
Requires scope workspace:write
Warning:
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| feature | path | string one of leads · conversations · messages · knowledge | Required | — | The feature group. Anything else returns 422. |
Request
curl
curl -X DELETE "https://app.evoriqa.com/api/v1/webhooks/{feature}" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/webhooks/{feature}", {
method: "DELETE",
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();Python
import os
import requests
res = requests.delete(
"https://app.evoriqa.com/api/v1/webhooks/{feature}",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"deleted": true
}
}