`GET /api/scripts/{id}/runs` — the recent standalone runs of a script, newest first (#626 §13). The run panel renders this history alongside the live run it polls after a `POST .../run`. Tenancy-checks the script first (404 for an unknown id / wrong workspace).
const url = 'https://example.com/api/scripts/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/runs';const options = {method: 'GET'};
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/scripts/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/runsParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”Query Parameters
Section titled “Query Parameters”Max rows (default 20, capped server-side at 100).
Responses
Section titled “Responses”#626 §13 — one recent standalone-script run for the run panel. A compact
summary of a kind='script' run row: the run id + status + timestamps, the
failure message (if any) and the script’s structured result JSON (null
while still running). The run panel polls the run row for the live result;
this list shows the recent history.
object
Examplegenerated
[ { "created_at": "2026-04-15T12:00:00Z", "error_message": "example", "finished_at": "2026-04-15T12:00:00Z", "result": "example", "run_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "status": "example" }]Unknown script id / wrong workspace
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"}