GET
https://app.evoriqa.com/api/v1/webhooks/deliveriesList webhook deliveries
Returns delivery attempts across all groups, newest first, offset-paginated. Narrow the log with `q` (event name or endpoint URL) and a `from`/`to` date window. Attempts are retained for 90 days.
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.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| q | query | string up to 200 chars | Optional | — | Case-insensitive substring match on the delivery's event name or the endpoint URL. Trimmed; values longer than 200 characters are truncated to that length. |
| from | query | string date | Optional | — | Inclusive lower bound on the attempt's createdAt, a strict YYYY-MM-DD calendar date resolved to 00:00:00.000 UTC. A malformed or impossible date returns 422 VALIDATION_ERROR. |
| to | query | string date | Optional | — | Inclusive upper bound on the attempt's createdAt, a strict YYYY-MM-DD calendar date resolved to 23:59:59.999 UTC so the whole day is covered. A malformed or impossible date returns 422 VALIDATION_ERROR. |
| skip | query | integer ≥ 0 | Optional | 0 | Offset pagination: rows to skip. |
| take | query | integer 1–200 | Optional | 50 | Offset pagination: rows to return. Defaults to 50. |
Request
curl
curl "https://app.evoriqa.com/api/v1/webhooks/deliveries" \
-H "x-api-key: $EVORIQA_API_KEY"Node.js
const res = await fetch("https://app.evoriqa.com/api/v1/webhooks/deliveries", {
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/deliveries",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
200 OK
{
"success": true,
"data": {
"deliveries": [
{
"id": "9f1c1c2a-1b21-4f7c-9d0f-6a3a4a1c9d55",
"event": "lead.created",
"feature": "leads",
"url": "https://example.com/evoriqa-webhook",
"status": "success",
"httpStatus": 200,
"attempt": 1,
"createdAt": "2026-08-09T14:06:04.000Z"
}
],
"skip": 0,
"take": 50,
"hasMore": false
}
}