Calls
Intelligence
Conversational Pathways
Vector Knowledge Bases
Blocked Numbers
Voices
Custom Tools
Web Agents
Custom Twilio Accounts
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
SMS
Pathway Folders
Get All Folders
Retrieves all folders for the authenticated user, including folder ID, name, and parent folder ID.
GET
/
v1
/
pathway
/
folders
Copy
Ask AI
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'authorization: <authorization>'
Copy
Ask AI
{
"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.
Copy
Ask AI
{
"folders": [
{
"id": "folder_123",
"name": "My Folder",
"parent_folder_id": null
},
{
"id": "folder_456",
"name": "Subfolder",
"parent_folder_id": "folder_123"
}
]
}
Copy
Ask AI
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'authorization: <authorization>'
Copy
Ask AI
{
"folders": [
{
"id": "folder_123",
"name": "My Folder",
"parent_folder_id": null
},
{
"id": "folder_456",
"name": "Subfolder",
"parent_folder_id": "folder_123"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.