curl --request POST \
--url https://api.getcargo.io/v1/orchestration/nodes/compute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"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>"
},
"context": {},
"groupContext": {}
}
'{
"computedConfig": {}
}Compute node output
curl --request POST \
--url https://api.getcargo.io/v1/orchestration/nodes/compute \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"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>"
},
"context": {},
"groupContext": {}
}
'{
"computedConfig": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful response
Computed node configuration.
Show child attributes
Was this page helpful?