Skip to main content
GET
/
orchestration
/
releases
/
{uuid}
Get release
curl --request GET \
  --url https://api.getcargo.io/v1/orchestration/releases/{uuid} \
  --header 'Authorization: Bearer <token>'
{
  "release": {
    "uuid": "<string>",
    "parentUuid": "<string>",
    "workspaceUuid": "<string>",
    "userUuid": "<string>",
    "workflowUuid": "<string>",
    "description": "<string>",
    "version": "<string>",
    "status": "draft",
    "templateSlug": "<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>"
      }
    ],
    "formFields": [
      {
        "slug": "<string>",
        "name": "<string>",
        "kind": "string",
        "description": "<string>",
        "isRequired": true
      }
    ],
    "testRecords": [
      {
        "kind": "<string>",
        "id": "<string>",
        "data": {}
      }
    ],
    "deployedAt": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "deletedAt": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

uuid
string
required

Resource UUID

Response

Successful response

release
object
required