List action runs in a space
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
spaceId
Query parameters
limit
Page size, 1–100. Defaults to 20.
starting_after
Cursor: the id of the last run on the previous page.
Response
One page of runs, newest first.
data
has_more