---
title: "Execute action"
method: POST
path: "/orchestration/actions/execute"
tags: ["Orchestration - Actions"]
---

# Execute action

`POST /orchestration/actions/execute`

Execute an orchestration action

## Request body

- object — Request body schema.
  - `action` union, required
    - object — Action to execute.
      - `config` object, required
      - `retry` object
        - `maximumAttempts` number
        - `initialInterval` number
        - `backoffCoefficient` number
      - `kind` 'native', required
      - `actionSlug` string, required
    - object — Action to execute.
      - `config` object, required
      - `retry` object
        - `maximumAttempts` number
        - `initialInterval` number
        - `backoffCoefficient` number
      - `kind` 'connector', required
      - `connectorUuid` string
      - `integrationSlug` string, required
      - `actionSlug` string, required
    - object — Action to execute.
      - `config` object, required
      - `retry` object
        - `maximumAttempts` number
        - `initialInterval` number
        - `backoffCoefficient` number
      - `kind` 'tool', required
      - `toolUuid` string
      - `templateSlug` string
      - `releaseUuid` string
      - `waitUntilFinished` boolean
    - object — Action to execute.
      - `config` object, required
      - `retry` object
        - `maximumAttempts` number
        - `initialInterval` number
        - `backoffCoefficient` number
      - `kind` 'agent', required
      - `agentUuid` string
      - `templateSlug` string
      - `releaseUuid` string
      - `waitUntilFinished` boolean
  - `data` unknown

## Response `200`

Successful response

- object
  - `run` object, required — Created run details.
    - `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

## 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)
