GET
https://app.evoriqa.com/api/v1/webhooksList webhook endpoints
Returns one row per feature group with its endpoint's url, active flag, createdAt, and the events the group carries — nulls where no endpoint is configured.
Requires scope workspace:read
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.
Request
curl
curl "https://app.evoriqa.com/api/v1/webhooks" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/webhooks", {
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();Python
import os
import requests
res = requests.get(
"https://app.evoriqa.com/api/v1/webhooks",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"features": [
"leads",
"conversations",
"messages",
"knowledge"
],
"endpoints": [
{
"feature": "leads",
"url": "https://example.com/evoriqa-webhook",
"active": true,
"createdAt": "2026-08-01T09:00:00.000Z",
"events": [
"lead.created"
]
},
{
"feature": "messages",
"url": null,
"active": null,
"createdAt": null,
"events": [
"message.created"
]
}
]
}
}