Pathway Folders
Get All Folders
Calls
Intelligence
Conversational Pathways
Vector Knowledge Bases
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
Batches
SMS
Account
Organizations
- POSTCreate Organization
- DELDelete Organization
- GETGet Organization
- GETGet Organization Members
- GETGet Organization's Current Service Version
- GETList Organization's Service Versions
- PATCHUpdate Organization's Service Version
- PATCHUpdate Organization Members
- PATCHUpdate Organization Member Permissions
- PATCHUpdate Organization Properties
- GETGet User Organization Memberships
- DELLeave Organization
- GETGet Organization Billing Information
- GETGet Organization Billing Refill Information
Pathway Folders
Get All Folders
Retrieves all folders for the authenticated user, including folder ID, name, and parent folder ID.
GET
/
v1
/
pathway
/
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
Your API key for authentication.
Response
An array of folder objects.
The unique identifier of the folder.
The name of the folder.
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"
}
]
}
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"
}
]
}