POST
/
v1
/
pathway
/
folders
Create Folder
curl --request POST \
  --url https://app.luly.ai/api/v1/pathway/folders \
  --header 'Content-Type: application/json' \
  --header 'authorization: <authorization>' \
  --data '{
  "name": "<string>",
  "parent_folder_id": "<string>"
}'
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}

Headers

authorization
string
required
Your API key for authentication.

Body Parameters

name
string
required
The name of the new folder.
parent_folder_id
string
required
The ID of the version to be deleted.

Response

folder_id
string
The unique identifier of the newly created folder.
name
string
The name of the newly created folder.
parent_folder_id
string
The ID of the parent folder, if applicable.
{
  "status": "success",
  "pathway_id": "9d404c1b-6a23-4426-953a-a52c392ff8f1"
}