curl --request GET \
--url https://api.getcargo.io/v1/orchestration/runs/{uuid} \
--header 'Authorization: Bearer <token>'{
"run": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"workflowUuid": "<string>",
"releaseUuid": "<string>",
"nodes": [
{
"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>"
}
],
"batchUuid": "<string>",
"temporalWorkflowId": "<string>",
"recordId": "<string>",
"recordTitle": "<string>",
"contextS3Filename": "<string>",
"computedConfigsS3Filename": "<string>",
"parentUuid": "<string>",
"parentNodeUuid": "<string>",
"parentBatchUuid": "<string>",
"parentAgentUuid": "<string>",
"parentChatUuid": "<string>",
"parentMessageUuid": "<string>",
"isGroupParent": true,
"status": "idle",
"errorMessage": "<string>",
"executions": [
{
"nodeUuid": "<string>",
"nodeSlug": "<string>",
"nodeBatchUuid": "<string>",
"nodeRunUuid": "<string>",
"nodeMessageUuid": "<string>",
"nodeChildIndex": 123,
"nextNodeUuid": "<string>",
"status": "pending",
"errorMessage": "<string>",
"title": "<string>",
"iconUrl": "<string>",
"creditsUsedCount": 123,
"nodeKind": "<string>",
"nodeActionSlug": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>",
"finishedAt": "<string>",
"deletedAt": "<string>"
},
"runComputedConfigs": {},
"runContext": {}
}Get an orchestration run by UUID
curl --request GET \
--url https://api.getcargo.io/v1/orchestration/runs/{uuid} \
--header 'Authorization: Bearer <token>'{
"run": {
"uuid": "<string>",
"workspaceUuid": "<string>",
"workflowUuid": "<string>",
"releaseUuid": "<string>",
"nodes": [
{
"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>"
}
],
"batchUuid": "<string>",
"temporalWorkflowId": "<string>",
"recordId": "<string>",
"recordTitle": "<string>",
"contextS3Filename": "<string>",
"computedConfigsS3Filename": "<string>",
"parentUuid": "<string>",
"parentNodeUuid": "<string>",
"parentBatchUuid": "<string>",
"parentAgentUuid": "<string>",
"parentChatUuid": "<string>",
"parentMessageUuid": "<string>",
"isGroupParent": true,
"status": "idle",
"errorMessage": "<string>",
"executions": [
{
"nodeUuid": "<string>",
"nodeSlug": "<string>",
"nodeBatchUuid": "<string>",
"nodeRunUuid": "<string>",
"nodeMessageUuid": "<string>",
"nodeChildIndex": 123,
"nextNodeUuid": "<string>",
"status": "pending",
"errorMessage": "<string>",
"title": "<string>",
"iconUrl": "<string>",
"creditsUsedCount": 123,
"nodeKind": "<string>",
"nodeActionSlug": "<string>"
}
],
"createdAt": "<string>",
"updatedAt": "<string>",
"finishedAt": "<string>",
"deletedAt": "<string>"
},
"runComputedConfigs": {},
"runContext": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Resource UUID
Was this page helpful?