`GET /api/reports/schedules/deliveries/stats` — the workspace-wide send KPIs (`sent` / `failed`) from the `report_schedule_deliveries` log, plus the newest failures with the reason each carries (#874 / RP-7). The former third KPI ("Delivered") was the same count as `sent` and is gone (#874 / RP-6).
const url = 'https://example.com/api/reports/schedules/deliveries/stats';const options = {method: 'GET', headers: {cookie: 'supacloud_session=<supacloud_session>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/reports/schedules/deliveries/stats \ --cookie supacloud_session=<supacloud_session>Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Workspace report-delivery KPIs.
The send KPIs over all schedules in a workspace (#626 §11) plus the newest
failures behind the failed count.
#874 — two honesty fixes live in this shape:
- The third KPI (“Delivered”) is GONE. It was the same
status='sent'SQL FILTER assent, rendered under a second label, so it read as an independent delivery confirmation that never existed (RP-6). recent_failuresis the missing READ path forreport_schedule_deliveries.error(RP-7). “Failed: 3” with no way to learn which schedule or why is barely better than silence.
object
One failed delivery attempt, surfaced next to the KPI counts (#874 / RP-7).
object
email | discord | telegram | in_app.
The recorded reason. Always populated for a failure row written since #874;
None only for a pre-existing row.
Examplegenerated
{ "failed": 1, "recent_failures": [ { "channel": "example", "error": "example", "fired_at": "2026-04-15T12:00:00Z", "schedule_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "schedule_name": "example" } ], "sent": 1}Authentication required
The canonical JSON body of every error response — the single source of truth
the frontend binds to. Every AppError serializes as this exact shape, and
the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is
what the frontend error schema is generated from, so there is no hand-written
error schema on either end.
object
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}Permission denied
The canonical JSON body of every error response — the single source of truth
the frontend binds to. Every AppError serializes as this exact shape, and
the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is
what the frontend error schema is generated from, so there is no hand-written
error schema on either end.
object
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}Structured server error
The canonical JSON body of every error response — the single source of truth
the frontend binds to. Every AppError serializes as this exact shape, and
the generated OpenAPI component ApiErrorBody (with its ErrorCode enum) is
what the frontend error schema is generated from, so there is no hand-written
error schema on either end.
object
Machine-readable, stable error code.
Present only on a quota-exceeded 403 — the inline upgrade-CTA payload.
object
The entitlement feature key that was hit, e.g. apps.max_count.
The plan’s limit for this key.
Where to send the user to upgrade.
Current usage (count or bytes, per the key).
Human-readable message (the server’s English text; the client may localize
by code).
Example
{ "code": "not_found"}