Skip to main content
POST
/
orchestration
/
nodes
/
execute
Execute node
curl --request POST \
  --url https://api.getcargo.io/v1/orchestration/nodes/execute \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "workflowUuid": "<string>",
  "releaseUuid": "<string>",
  "node": {
    "uuid": "<string>",
    "slug": "<string>",
    "config": {},
    "childrenUuids": [
      "<string>"
    ],
    "fallbackOnFailure": true,
    "position": {
      "x": 123,
      "y": 123
    },
    "kind": "native",
    "actionSlug": "<string>",
    "name": "<string>",
    "description": "<string>",
    "retry": {
      "maximumAttempts": 123,
      "initialInterval": 123,
      "backoffCoefficient": 123
    },
    "fallbackChildUuid": "<string>"
  },
  "computedConfig": {},
  "context": {},
  "groupContext": {}
}
'
{
  "status": "<string>",
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Request body schema.

workflowUuid
string
required

Workflow identifier.

releaseUuid
string
required

Release identifier.

node
Node · object
required

Node configuration.

computedConfig
Computed config · object
required

Computed node configuration.

context
Context · object
required

Execution context for the node.

groupContext
Group context · object

Group context for the node.

Response

Successful response

status
string
required

Execution status.

Allowed value: "pending"
message
string
required

Status message.