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.
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'authorization: <authorization>'
{
"folders": [
{
"id": "folder_123",
"name": "My Folder",
"parent_folder_id": null
},
{
"id": "folder_456",
"name": "Subfolder",
"parent_folder_id": "folder_123"
}
]
}
Retrieves all folders for the authenticated user, including folder ID, name, and parent folder ID.
curl --request GET \
--url https://us.api.bland.ai/v1/pathway/folders \
--header 'authorization: <authorization>'
{
"folders": [
{
"id": "folder_123",
"name": "My Folder",
"parent_folder_id": null
},
{
"id": "folder_456",
"name": "Subfolder",
"parent_folder_id": "folder_123"
}
]
}
{
"folders": [
{
"id": "folder_123",
"name": "My Folder",
"parent_folder_id": null
},
{
"id": "folder_456",
"name": "Subfolder",
"parent_folder_id": "folder_123"
}
]
}
Was this page helpful?