curl --request POST \
--url https://api.tiro.ooo/v1/external/teams/me/folders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Q1 2025 Meetings"
}
'{
"id": "12348",
"title": "Engineering Standups",
"description": "Daily engineering team standup notes",
"color": "#27AE60",
"sharingType": "ALL_MEMBER_EDITOR",
"isTeamFolder": true,
"createdAt": "2025-01-20T09:00:00Z",
"updatedAt": "2025-01-20T09:00:00Z"
}Create a new folder in the team workspace.
Sharing Types:
ALL_MEMBER_EDITOR: All team members can view and editALL_MEMBER_VIEWER: All team members can view (no team-wide edit access)LIMITED: Invited members only, with individual VIEWER/EDITOR rolesSee TeamNoteSharingType for details.
curl --request POST \
--url https://api.tiro.ooo/v1/external/teams/me/folders \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "Q1 2025 Meetings"
}
'{
"id": "12348",
"title": "Engineering Standups",
"description": "Daily engineering team standup notes",
"color": "#27AE60",
"sharingType": "ALL_MEMBER_EDITOR",
"isTeamFolder": true,
"createdAt": "2025-01-20T09:00:00Z",
"updatedAt": "2025-01-20T09:00:00Z"
}API key in format {id}.{secret}
Request body for creating a new folder
Folder title (max 50 characters)
1 - 50"Project Alpha"
Folder description
"Notes related to Project Alpha"
Folder color in hex format (default "#4A90D9")
"#4A90D9"
Parent folder ID for nested folders
"67890"
Sharing permission level (default ALL_MEMBER_VIEWER)
ALL_MEMBER_EDITOR, ALL_MEMBER_VIEWER, LIMITED "ALL_MEMBER_VIEWER"
Folder created successfully
Detailed folder information including metadata
Unique identifier for the folder
"12345"
Folder title (max 50 characters)
"Weekly Team Meetings"
Folder description
"Notes from our weekly team sync meetings"
Folder color in hex format
"#4A90D9"
Whether this is a team folder
true
ISO-8601 creation timestamp
"2025-01-15T10:30:00Z"
ISO-8601 last update timestamp
"2025-01-15T11:45:00Z"
Sharing permission level for team folders. Controls who can access notes within the folder.
| Type | View Access | Edit Access |
|---|---|---|
ALL_MEMBER_EDITOR | All team members | All team members |
ALL_MEMBER_VIEWER | All team members | No team-wide edit access granted |
LIMITED | Invited members only | Invited members only (per-member role) |
Details:
ALL_MEMBER_EDITOR: All team members can view and edit notes in this folder.ALL_MEMBER_VIEWER: All team members can view notes. No edit access is granted at the team level.LIMITED: Only explicitly invited members can access. When inviting members, you assign each member either VIEWER or EDITOR role individually.ALL_MEMBER_EDITOR, ALL_MEMBER_VIEWER, LIMITED "ALL_MEMBER_VIEWER"