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>"
}'
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
Creates a new folder for the authenticated user.
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>"
}'
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
{
"folder_id": "new_folder_123",
"name": "New Folder",
"parent_folder_id": null
}
Was this page helpful?