Skip to main content
GET
/
api
/
workflows
/
{workflow_uuid}
/
version
/
{workflow_version_uuid}
Get Workflow Version
curl --request GET \
  --url https://api.example.com/api/workflows/{workflow_uuid}/version/{workflow_version_uuid}
{
  "workflow_version_uuid": "<string>",
  "workflow_uuid": "<string>",
  "specification": "<unknown>",
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "version": 123,
  "is_current": true,
  "name": "<string>",
  "description": "<string>"
}

Headers

kinetic-api-key
string | null

Path Parameters

workflow_uuid
string
required
workflow_version_uuid
string
required

Response

Successful Response

Backed by workflow_versions table (see kinetic/db/schema.sql).

Note: name/description are workflow-identity fields (from workflows) and may be included by some endpoints (e.g. create), but are not stored on the version row itself, so they must be optional.

workflow_version_uuid
string
required
workflow_uuid
string
required
specification
any
required
created_at
string<date-time> | null
updated_at
string<date-time> | null
version
integer | null
is_current
boolean | null
name
string | null
description
string | null