curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Personal Notes"
},
{
"id": "folder-def456",
"title": "Work Projects"
}
]
}Retrieve all folders accessible to the authenticated user
curl --request GET \
--url https://api.tiro.ooo/v1/external/users/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Personal Notes"
},
{
"id": "folder-def456",
"title": "Work Projects"
}
]
}