v1
latestOpenAPI 3.1.02026-07-226875162.5 KBFolder
Create Folder
Create a folder in a workspace.
Requires a user API key — you must be a writable member of the workspace. A team-only API key returns 401.
To nest the folder, set parentId (folders can be nested up to 5 levels below the root level). sharingType defaults to ALL_MEMBER_VIEWER when omitted.
post/v1/external/workspaces/{workspaceGuid}/folders
Path parameters
workspaceGuidstring required
Workspace GUID. Obtain it from GET /v1/external/workspaces.
Request body
Example request
{
"title": "Q1 2025 Meetings",
"sharingType": "PRIVATE",
"parentId": "12300",
"description": "Daily engineering standup notes",
"color": "#27AE60"
}Response
Folder created
Example response
{
"id": "12345",
"workspaceGuid": "ws_a1b2c3d4",
"title": "Weekly Team Meetings",
"description": "Notes from our weekly sync",
"sharingType": "PRIVATE",
"parentId": "12300",
"color": "#4A90D9",
"isTeamFolder": true,
"createdAt": "2025-01-15T10:30:00Z",
"updatedAt": "2025-01-18T14:20:00Z"
}