v1
latestOpenAPI 3.1.02026-07-226875162.5 KBFolder
List Folders
List the folders you can access in a workspace, as a flat array.
Requires a user API key — folder access is evaluated per user via workspace membership. A team-only API key returns 401.
Create folders with POST on this same path. Read and manage individual folders with the endpoints under /v1/external/folders/{folderId}.
get/v1/external/workspaces/{workspaceGuid}/folders
Path parameters
workspaceGuidstring required
Workspace GUID. Obtain it from GET /v1/external/workspaces.
Response
Folders you can access in the workspace
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"
}
]