GET
/
v1
/
pathway
/
folders
Get All Folders
curl --request GET \
  --url https://us.api.bland.ai/v1/pathway/folders \
  --header 'authorization: <authorization>'
{
  "folders": [
    {
      "id": "folder_123",
      "name": "My Folder",
      "parent_folder_id": null
    },
    {
      "id": "folder_456",
      "name": "Subfolder",
      "parent_folder_id": "folder_123"
    }
  ]
}

Headers

authorization
string
required
Your API key for authentication.

Response

folders
array
An array of folder objects.
folders[].id
string
The unique identifier of the folder.
folders[].name
string
The name of the folder.
folders[].parent_folder_id
string
The ID of the parent folder, if applicable.
{
  "folders": [
    {
      "id": "folder_123",
      "name": "My Folder",
      "parent_folder_id": null
    },
    {
      "id": "folder_456",
      "name": "Subfolder",
      "parent_folder_id": "folder_123"
    }
  ]
}