Skip to main content
GET
/
workflows
/
{workflow_id}
/
versions
List workflow versions
curl --request GET \
  --url https://api.cloudcruise.com/workflows/{workflow_id}/versions \
  --header 'cc-key: <api-key>'
[
  {
    "version_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "version_number": 2,
    "created_at": "2023-11-07T05:31:56Z",
    "version_note": "<string>",
    "created_by": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.cloudcruise.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

cc-key
string
header
required

API key-based authentication. Provide your CloudCruise API key in the cc-key header.

Headers

cc-key
string

CloudCruise API key for authentication

Path Parameters

workflow_id
string<uuid>
required

The ID of the workflow

Response

Successful operation

version_id
string<uuid>
required

UUID of the version row in the underlying versions table

version_number
integer
required

Auto-incrementing version number for this workflow (1-indexed)

Required range: x >= 1
created_at
string<date-time>
required

Timestamp when this version was created

version_note
string | null

Optional note describing what changed in this version

created_by
string<uuid> | null

ID of the user who created this version