Skip to main content

list_runs

List Trigger runs for an organization, with status, tags, time filters, and pagination.

list_runs

List Trigger runs for an organization (scoped by the organization ownership tag).

Use this for history such as failed runs this week. If you already have a run_ ID, call get_run.

See Installation for auth and response_format.

Arguments

ArgumentTypeRequiredDescription
organizationIdstringYesOrganization ID.
statusstring[]NoStatus filters, for example EXECUTING, COMPLETED, FAILED.
tagstring[]NoExtra non-organization tags.
pageSizenumberNoPage size, 1-100.
pageAfterstringNoCursor for the next page.
pageBeforestringNoCursor for the previous page.
createdAtFromstringNoInclusive created-at lower bound (ISO 8601).
createdAtTostringNoInclusive created-at upper bound (ISO 8601).
createdAtPeriodstringNoRelative window: today, week, or month.
isTestbooleanNoWhen true, only test runs.
response_formatjson or markdownNoDefault json.

Example

{
  "organizationId": "org_123",
  "status": ["FAILED"],
  "createdAtPeriod": "week",
  "pageSize": 20
}

Returns

JSON with success and data (Trigger list payload: runs plus pagination).

On this page