GET
/
apps
/
{app_id}
/
workflows
/
{workflow_id}
/
versions
curl --request GET \
  --url https://api.withcortex.ai/apps/{app_id}/workflows/{workflow_id}/versions
[
  {
    "id": "<string>",
    "description": "<string>",
    "version": 123,
    "created_at": "2023-12-25",
    "key": "<string>",
    "input": {},
    "input_default": {},
    "steps": [
      {
        "type": "code",
        "key": "<string>",
        "conditional": "<string>",
        "loop": "<string>",
        "code": "<string>"
      }
    ]
  }
]

Path Parameters

app_id
string
required
workflow_id
string
required

Query Parameters

page
number
take
number

Response

200 - application/json
id
string
required
description
string | null
required
version
number
required
created_at
string | null
required
key
string
required
input
object
required
input_default
object | null
required
steps
object[]
required