curl --request GET \
--url https://api.tiro.ooo/v1/external/teams/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "12345",
"title": "Team Projects",
"isTeamFolder": true
},
{
"id": "12346",
"title": "Team Resources",
"isTeamFolder": true
}
],
"nextCursor": "eyJpZCI6MTIzNDZ9"
}Retrieve team folders with cursor-based pagination.
cursor from previous response’s nextCursor to paginate through resultscurl --request GET \
--url https://api.tiro.ooo/v1/external/teams/me/folders \
--header 'Authorization: Bearer <token>'{
"content": [
{
"id": "12345",
"title": "Team Projects",
"isTeamFolder": true
},
{
"id": "12346",
"title": "Team Resources",
"isTeamFolder": true
}
],
"nextCursor": "eyJpZCI6MTIzNDZ9"
}Documentation Index
Fetch the complete documentation index at: https://api-docs.tiro.ooo/llms.txt
Use this file to discover all available pages before exploring further.
API key in format {id}.{secret}
Cursor for the next page. Obtained from nextCursor in previous response.
Number of folders to return per page
1 <= x <= 1000