`GET /api/reports/schedules/board` — one server-paginated, filtered + sorted page of the Geplante board plus the total + the workspace-wide facet chips.
const url = 'https://example.com/api/reports/schedules/board';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/board \ --cookie supacloud_session=<supacloud_session>Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Query Parameters
Section titled “Query Parameters”Free-text search over the schedule name.
report_kind filter chip.
Project-scope filter (a schedule scoped to this project).
Enabled filter chip; omit for both.
Whitelisted sort column: name | kind | cadence | channels |
next_run | status | created_at. Default created_at. Every column
sorts server-side (next_run is a computed sort resolved in the service).
asc | desc (default desc).
Recompute the facet chips (default true). The board sends false on a
page/sort change since the chip counts are workspace-wide.
Responses
Section titled “Responses”One page of report schedules.
GET /api/reports/schedules/board body — one page of schedules + total + facet
chips. Each item carries the server-computed next_run_at (via the
ReportScheduleResponse From impl).
object
The workspace-wide facet chips for the Geplante board.
object
Counts per cadence (daily / weekly / monthly).
One filter-chip value and its count. Counts are workspace-wide (independent of the active filter — the chip totals do not shift as the user filters).
object
How many rows fall in this bucket.
The bucket value (e.g. a scope, a role, a framework).
Counts per delivery channel (email / discord / telegram / in_app). A schedule with several channels is counted under each (the chips are not exclusive).
One filter-chip value and its count. Counts are workspace-wide (independent of the active filter — the chip totals do not shift as the user filters).
object
How many rows fall in this bucket.
The bucket value (e.g. a scope, a role, a framework).
Counts per report_kind (overview / usage / delivery / audit / operations /
engine_digest).
One filter-chip value and its count. Counts are workspace-wide (independent of the active filter — the chip totals do not shift as the user filters).
object
How many rows fall in this bucket.
The bucket value (e.g. a scope, a role, a framework).
Counts per project scope (the project_id bucket; a whole-workspace schedule
has no project_id and is not bucketed here). The FE resolves the project
label from the id.
One filter-chip value and its count. Counts are workspace-wide (independent of the active filter — the chip totals do not shift as the user filters).
object
How many rows fall in this bucket.
The bucket value (e.g. a scope, a role, a framework).
Disabled schedule count.
Enabled schedule count.
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
{ "facets": { "by_cadence": [ { "count": 1, "value": "example" } ], "by_channel": [ { "count": 1, "value": "example" } ], "by_kind": [ { "count": 1, "value": "example" } ], "by_scope": [ { "count": 1, "value": "example" } ], "disabled": 1, "total": 1 }, "items": [ { "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" } ], "total": 1}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"}