---
title: "List runs"
method: POST
path: "/orchestration/runs/list"
tags: ["Orchestration - Runs"]
---

# List runs

`POST /orchestration/runs/list`

List orchestration runs

## Request body

- object — Request body schema.
  - `workflowUuid` string, uuid, required — Workflow identifier.
  - `userUuid` string, uuid — User identifier to filter by.
  - `releaseUuid` string, uuid — Release identifier to filter by.
  - `batchUuid` string, uuid — Batch identifier to filter by.
  - `statuses` string[] — Run statuses to include.
  - `recordId` string — Record ID to filter by.
  - `recordTitle` string — Record title to filter by.
  - `recordTitleOrId` string — Record title or ID to filter by.
  - `parentBatchUuid` string, uuid — Parent batch identifier to filter by.
  - `parentUuid` string, uuid — Parent run identifier to filter by.
  - `parentNodeUuid` string, uuid — Parent node identifier to filter by.
  - `isGroupParent` boolean — Whether to select group parent runs.
  - `executionsFilter` object — Execution filters for matching runs.
    - `conjonction` 'or' | 'and', required
    - `groups` object[], required
      - `conjonction` 'or' | 'and', required
      - `conditions` object[], required
        - `kind` 'node', required
        - `nodeSlug` string, required
        - `status` 'absent' | 'pending' | 'success' | 'error', required
        - `value` string
  - `createdAfter` string — Include runs created after this timestamp.
  - `createdBefore` string — Include runs created before this timestamp.
  - `updatedAfter` string — Include runs updated after this timestamp.
  - `updatedBefore` string — Include runs updated before this timestamp.
  - `limit` number — Maximum number of runs to return.
  - `offset` number — Number of runs to skip.

## Response `200`

Successful response

- object
  - `runs` object[], required — Runs matching the filter.
    - `uuid` string, required
    - `workspaceUuid` string, required
    - `workflowUuid` string, required
    - `userUuid` string, nullable, required
    - `releaseUuid` string, nullable, required
    - `nodes` union[], nullable, required
      - union
        - object
          - `uuid` string, uuid, required
          - `slug` string, required
          - `name` string
          - `config` object, required
          - `description` string
          - `retry` object
            - `maximumAttempts` number
            - `initialInterval` number
            - `backoffCoefficient` number
          - `childrenUuids` string[], required
          - `fallbackChildUuid` string
          - `fallbackOnFailure` boolean, required
          - `position` object, required
            - `x` number, required
            - `y` number, required
          - `kind` 'native', required
          - `actionSlug` string, required
        - object
          - `uuid` string, uuid, required
          - `slug` string, required
          - `name` string
          - `config` object, required
          - `description` string
          - `retry` object
            - `maximumAttempts` number
            - `initialInterval` number
            - `backoffCoefficient` number
          - `childrenUuids` string[], required
          - `fallbackChildUuid` string
          - `fallbackOnFailure` boolean, required
          - `position` object, required
            - `x` number, required
            - `y` number, required
          - `kind` 'connector', required
          - `connectorUuid` string
          - `integrationSlug` string, required
          - `actionSlug` string, required
        - object
          - `uuid` string, uuid, required
          - `slug` string, required
          - `name` string
          - `config` object, required
          - `description` string
          - `retry` object
            - `maximumAttempts` number
            - `initialInterval` number
            - `backoffCoefficient` number
          - `childrenUuids` string[], required
          - `fallbackChildUuid` string
          - `fallbackOnFailure` boolean, required
          - `position` object, required
            - `x` number, required
            - `y` number, required
          - `kind` 'tool', required
          - `toolUuid` string
          - `templateSlug` string
          - `releaseUuid` string
          - `waitUntilFinished` boolean
        - object
          - `uuid` string, uuid, required
          - `slug` string, required
          - `name` string
          - `config` object, required
          - `description` string
          - `retry` object
            - `maximumAttempts` number
            - `initialInterval` number
            - `backoffCoefficient` number
          - `childrenUuids` string[], required
          - `fallbackChildUuid` string
          - `fallbackOnFailure` boolean, required
          - `position` object, required
            - `x` number, required
            - `y` number, required
          - `kind` 'agent', required
          - `agentUuid` string
          - `templateSlug` string
          - `releaseUuid` string
          - `waitUntilFinished` boolean
    - `batchUuid` string, nullable, required
    - `traceUuid` string, required
    - `temporalWorkflowId` string, required
    - `recordId` string, required
    - `recordTitle` string, required
    - `contextS3Filename` string, required
    - `computedConfigsS3Filename` string, required
    - `parentUuid` string, nullable, required
    - `parentNodeUuid` string, nullable, required
    - `parentBatchUuid` string, nullable, required
    - `parentAgentUuid` string, nullable, required
    - `parentChatUuid` string, nullable, required
    - `parentMessageUuid` string, nullable, required
    - `isGroupParent` boolean, nullable, required
    - `status` 'idle' | 'pending' | 'running' | 'success' | 'error' | 'cancelling' | 'cancelled' | 'skipped', required
    - `errorMessage` string, nullable, required
    - `executions` union[], required
      - union
        - object
          - `nodeUuid` string, required
          - `nodeSlug` string, required
          - `nodeBatchUuid` string, nullable, required
          - `nodeRunUuid` string, nullable, required
          - `nodeMessageUuid` string, nullable, required
          - `nodeChildIndex` number, nullable, required
          - `nextNodeUuid` string, nullable, required
          - `status` 'pending' | 'success' | 'error', required
          - `errorMessage` string, nullable, required
          - `title` string, nullable, required
          - `iconUrl` string, nullable, required
          - `creditsUsedCount` number, required
          - `nodeWaitUntilFinished` boolean, required
          - `nodeKind` 'native', required
          - `nodeActionSlug` string, required
        - object
          - `nodeUuid` string, required
          - `nodeSlug` string, required
          - `nodeBatchUuid` string, nullable, required
          - `nodeRunUuid` string, nullable, required
          - `nodeMessageUuid` string, nullable, required
          - `nodeChildIndex` number, nullable, required
          - `nextNodeUuid` string, nullable, required
          - `status` 'pending' | 'success' | 'error', required
          - `errorMessage` string, nullable, required
          - `title` string, nullable, required
          - `iconUrl` string, nullable, required
          - `creditsUsedCount` number, required
          - `nodeWaitUntilFinished` boolean, required
          - `nodeKind` 'connector', required
          - `nodeActionSlug` string, required
          - `nodeConnectorUuid` string, required
          - `nodeIntegrationSlug` string, required
        - object
          - `nodeUuid` string, required
          - `nodeSlug` string, required
          - `nodeBatchUuid` string, nullable, required
          - `nodeRunUuid` string, nullable, required
          - `nodeMessageUuid` string, nullable, required
          - `nodeChildIndex` number, nullable, required
          - `nextNodeUuid` string, nullable, required
          - `status` 'pending' | 'success' | 'error', required
          - `errorMessage` string, nullable, required
          - `title` string, nullable, required
          - `iconUrl` string, nullable, required
          - `creditsUsedCount` number, required
          - `nodeWaitUntilFinished` boolean, required
          - `nodeKind` 'tool', required
          - `nodeToolUuid` string, required
          - `nodeReleaseUuid` string, nullable, required
        - object
          - `nodeUuid` string, required
          - `nodeSlug` string, required
          - `nodeBatchUuid` string, nullable, required
          - `nodeRunUuid` string, nullable, required
          - `nodeMessageUuid` string, nullable, required
          - `nodeChildIndex` number, nullable, required
          - `nextNodeUuid` string, nullable, required
          - `status` 'pending' | 'success' | 'error', required
          - `errorMessage` string, nullable, required
          - `title` string, nullable, required
          - `iconUrl` string, nullable, required
          - `creditsUsedCount` number, required
          - `nodeWaitUntilFinished` boolean, required
          - `nodeKind` 'agent', required
          - `nodeAgentUuid` string, required
          - `nodeReleaseUuid` string, nullable, required
    - `createdAt` string, required
    - `updatedAt` string, required
    - `finishedAt` string, nullable, required
    - `deletedAt` string, nullable, required
  - `count` number, required — Total count of matching runs.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `404` — Not found
- `500` — Internal server error

---

[API](https://skmtc.net/getcargo/apis/cargo-api.md) · [All operations](https://skmtc.net/getcargo/apis/cargo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getcargo/cargo-api/revisions/1d5a19e01d83/schema)
