Skip to main content
GET
/
orchestration
/
releases
/
list
List releases
curl --request GET \
  --url https://api.getcargo.io/v1/orchestration/releases/list \
  --header 'Authorization: Bearer <token>'
{
  "releases": [
    {
      "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.

Query Parameters

limit
string
offset
string
statuses
enum<string>[]
Available options:
deployed,
draft,
archived
workflowUuid
string
userUuid
string

Response

Successful response

releases
object[]
required