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
Create Folder
Creates a new folder for the authenticated user.
POST
/
v1
/
pathway
/
folders
Copy
Ask AI
curl --request POST \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>",
"parent_folder_id": "<string>"
}'
Copy
Ask AI
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
Headers
Your API key for authentication.
Body Parameters
The name of the new folder.
The ID of the parent folder, if creating a subfolder.
Response
The unique identifier of the newly created folder.
The name of the newly created folder.
The ID of the parent folder, if applicable.
Copy
Ask AI
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
Copy
Ask AI
curl --request POST \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>",
"parent_folder_id": "<string>"
}'
Copy
Ask AI
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
Assistant
Responses are generated using AI and may contain mistakes.