GET
/
v1
/
pathway
/
folders
/
{folder_id}
/
pathways
Get Pathways in Folder
curl --request GET \
  --url https://us.api.bland.ai/v1/pathway/folders/{folder_id}/pathways \
  --header 'authorization: <authorization>'
{
  "pathways": [
    {
      "id": "pathway_123",
      "name": "My Pathway",
      "description": "A sample pathway",
      "created_at": "2024-03-15T12:00:00Z"
    }
  ]
}

Headers

authorization
string
required
Your API key for authentication.

Path Parameters

folder_id
string
required
The ID of the folder to retrieve pathways from.

Response

pathways
array
An array of pathway objects within the specified folder.
pathways[].id
string
The unique identifier of the pathway.
pathways[].name
string
The name of the pathway.
pathways[].description
string
The description of the pathway.
pathways[].created_at
string
The creation date and time of the pathway.
{
  "pathways": [
    {
      "id": "pathway_123",
      "name": "My Pathway",
      "description": "A sample pathway",
      "created_at": "2024-03-15T12:00:00Z"
    }
  ]
}