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

Headers

authorization
string
required

Your API key for authentication.

Path Parameters

pathway_id
string
required

The ID of the pathway containing the version to be deleted.

version_id
string
required

The ID of the version to be deleted.

Response

status
string

The status of the operation (e.g., “success”).

message
string

A message describing the result of the operation.

{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}