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
Move Pathway
Moves a pathway to a different folder or to the root level.
POST
/
v1
/
pathway
/
folders
/
move
Copy
Ask AI
curl --request POST \
--url https://us.api.bland.ai/v1/pathway/folders/move \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"pathway_id": "<string>",
"folder_id": "<string>"
}'
Copy
Ask AI
{
"pathway_id": "pathway_123",
"old_folder_id": "old_folder_456",
"new_folder_id": "new_folder_789"
}
Headers
Your API key for authentication.
Body Parameters
The ID of the pathway to move.
The ID of the destination folder. If null, the pathway will be moved to the root level.
Response
The ID of the moved pathway.
The ID of the original folder.
The ID of the new folder, or null if moved to root level.
Copy
Ask AI
{
"pathway_id": "pathway_123",
"old_folder_id": "old_folder_456",
"new_folder_id": "new_folder_789"
}
Copy
Ask AI
curl --request POST \
--url https://us.api.bland.ai/v1/pathway/folders/move \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"pathway_id": "<string>",
"folder_id": "<string>"
}'
Copy
Ask AI
{
"pathway_id": "pathway_123",
"old_folder_id": "old_folder_456",
"new_folder_id": "new_folder_789"
}
Assistant
Responses are generated using AI and may contain mistakes.