curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Project Discussion",
"isTeamFolder": true
},
{
"id": "folder-def456",
"title": "Daily Standup",
"isTeamFolder": false
}
]
}Retrieve folders for a specific note
curl --request GET \
--url https://api.tiro.ooo/v1/external/notes/{noteGuid}/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "folder-abc123",
"title": "Project Discussion",
"isTeamFolder": true
},
{
"id": "folder-def456",
"title": "Daily Standup",
"isTeamFolder": false
}
]
}