---
title: "List records"
method: POST
path: "/orchestration/records/list"
tags: ["Orchestration - Records"]
---

# List records

`POST /orchestration/records/list`

List orchestration records

## Request body

- object — Request body schema.
  - `workflowUuid` string, uuid, required — Workflow identifier.
  - `userUuid` string, uuid — User identifier to filter by.
  - `ids` string[] — Record IDs to include.
  - `title` string — Record title to match.
  - `titleOrId` string — Record title or ID to match.
  - `releaseUuid` string, uuid — Release identifier to filter by.
  - `batchUuid` string, uuid — Batch identifier to filter by.
  - `statuses` string[] — Record statuses to include.
  - `parentBatchUuid` string, uuid — Parent batch identifier to filter by.
  - `parentRunUuid` string, uuid — Parent run identifier to filter by.
  - `parentNodeUuid` string, uuid — Parent node identifier to filter by.
  - `isGroupParent` boolean — Whether to select group parent records.
  - `executionsFilter` object — Execution filters for matching records.
    - `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 records created after this timestamp.
  - `createdBefore` string — Include records created before this timestamp.
  - `updatedAfter` string — Include records updated after this timestamp.
  - `updatedBefore` string — Include records updated before this timestamp.
  - `limit` number — Maximum number of records to return.
  - `offset` number — Number of records to skip.

## Response `200`

Successful response

- object
  - `records` object[], required — Records matching the filter.
    - `workspaceUuid` string, required
    - `workflowUuid` string, required
    - `userUuid` string, nullable, required
    - `id` string, required
    - `title` string, required
    - `runUuid` string, required
    - `traceUuid` string, 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
    - `temporalWorkflowId` string, required
    - `contextS3Filename` string, required
    - `computedConfigsS3Filename` string, required
    - `parentRunUuid` 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` 'pending' | 'running' | 'success' | 'error' | 'cancelled' | 'cancelling', 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
  - `count` number, required — Total count of matching records.

## Other responses

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

---

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