curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders/{folderId}/path \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-root",
"title": "Root Folder",
"isAccessible": true
},
{
"id": "folder-parent",
"title": "Parent Folder",
"isAccessible": true
},
{
"id": "folder-current",
"title": "Current Folder",
"isAccessible": true
}
]
}Retrieve the breadcrumb path from root to the specified folder
curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders/{folderId}/path \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-root",
"title": "Root Folder",
"isAccessible": true
},
{
"id": "folder-parent",
"title": "Parent Folder",
"isAccessible": true
},
{
"id": "folder-current",
"title": "Current Folder",
"isAccessible": true
}
]
}