Skip to main content
POST
/
orchestration
/
nodes
/
validate
Validate nodes
curl --request POST \
  --url https://api.getcargo.io/v1/orchestration/nodes/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nodes": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "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>"
    }
  ]
}
'
{
  "outcome": "<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.

nodes
Nodes · object[]
required

Array of nodes to validate.

Response

Successful response

outcome
string
required

Validation outcome.

Allowed value: "valid"