post_api_reports_schedules
const url = 'https://example.com/api/reports/schedules';const options = { method: 'POST', headers: { cookie: 'supacloud_session=<supacloud_session>', 'Content-Type': 'application/json' }, body: '{"anchor_day":1,"cadence":"example","discord":true,"email":true,"email_to":"example","in_app":true,"name":"example","project_id":"2489E9AD-2EE2-8E00-8EC9-32D5F69181C0","recipient_mode":"example","report_kind":"example","send_times":["example"],"telegram":true,"timezone":"example","window_days":1}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/reports/schedules \ --header 'Content-Type: application/json' \ --cookie supacloud_session=<supacloud_session> \ --data '{ "anchor_day": 1, "cadence": "example", "discord": true, "email": true, "email_to": "example", "in_app": true, "name": "example", "project_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "recipient_mode": "example", "report_kind": "example", "send_times": [ "example" ], "telegram": true, "timezone": "example", "window_days": 1 }'Authorizations
Section titled “Authorizations”Request Bodyrequired
Section titled “Request Bodyrequired”object
In-app (user_notifications) delivery channel.
Human label for the schedule (required, non-blank).
#626 §25 — creator (default) or owner.
#626 §25 — the report kind; defaults to overview when omitted.
One or more "HH:MM" wall-clock send times (in timezone).
Optional trailing-window override (7/30/90); None = derive from cadence.
Examplegenerated
{ "anchor_day": 1, "cadence": "example", "discord": true, "email": true, "email_to": "example", "in_app": true, "name": "example", "project_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "recipient_mode": "example", "report_kind": "example", "send_times": [ "example" ], "telegram": true, "timezone": "example", "window_days": 1}Responses
Section titled “Responses”Wire shape for a report schedule. send_times are "HH:MM" strings (the DB
stores TIME[]); times are wall-clock in timezone. next_run_at is
server-computed (the next future fire instant) via due::next_run_after.
object
In-app (user_notifications) delivery channel.
Human label for the schedule (the “Bericht” column / modal name).
Server-computed next future fire instant (UTC), or None (e.g. a weekly
schedule with no anchor / an invalid timezone). Not a stored column.
#626 §25 — creator (default) or owner.
#626 §25 — overview | usage | delivery | audit | operations |
engine_digest.
Optional trailing-window override (7/30/90); None = derive from cadence.
Examplegenerated
{ "anchor_day": 1, "cadence": "example", "created_at": "2026-04-15T12:00:00Z", "created_by": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "discord": true, "email": true, "email_to": "example", "enabled": true, "id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "in_app": true, "last_sent_at": "2026-04-15T12:00:00Z", "name": "example", "next_run_at": "2026-04-15T12:00:00Z", "project_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "recipient_mode": "example", "report_kind": "example", "send_times": [ "example" ], "telegram": true, "timezone": "example", "updated_at": "2026-04-15T12:00:00Z", "window_days": 1, "workspace_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0"}Structured client 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"}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"}