curl --request PATCH \
--url https://us.api.bland.ai/v1/pathway/folders/{folder_id} \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>"
}'
{
"folder_id": "updated_folder_123",
"name": "Updated Folder Name",
"parent_folder_id": null
}
Updates the name of a specific folder for the authenticated user.
curl --request PATCH \
--url https://us.api.bland.ai/v1/pathway/folders/{folder_id} \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"name": "<string>"
}'
{
"folder_id": "updated_folder_123",
"name": "Updated Folder Name",
"parent_folder_id": null
}
{
"folder_id": "updated_folder_123",
"name": "Updated Folder Name",
"parent_folder_id": null
}
Was this page helpful?