GET
/
v1
/
pathway
/
:pathway_id
/
versions
Get Pathway Versions
curl --request GET \
  --url https://app.luly.ai/api/v1/pathway/:pathway_id/versions \
  --header 'authorization: <authorization>'
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}

Headers

authorization
string
required
Your API key for authentication.

Path

pathway_id
string
required

Response

id
string
The unique identifier of the pathway version.
Version_number
integer
The response from the Assistant to the message sent.
created_at
string
The timestamp when this version was created.
name
string
The name of this pathway version.
is_latest
boolean
Indicates whether this is the latest version of the pathway.
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}