List action runs in a space

View as Markdown
Lists the space's action runs, newest first. Requires `space:read` (denied → 404, which also hides the space's existence). Query: `limit` (1–100) and `starting_after` (a run id, cursor pagination). Returns 200 `{ data: ActionRun[], has_more: boolean }` — keep paging with `starting_after` set to the last returned id while `has_more` is true. Callers who lack `space:contribute` get capability fields (download and storage references, plus the `artifacts` array) redacted from each run.

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

spaceIdstringRequired

Query parameters

limitintegerOptional1-100Defaults to 20

Page size, 1–100. Defaults to 20.

starting_afterstringOptional>=1 character

Cursor: the id of the last run on the previous page.

Response

One page of runs, newest first.
datalist of objects
has_moreboolean