v1
latestOpenAPI 3.1.02026-07-226875162.5 KBFolder
Update Folder
Update a folder's title, description, color, or sharing type (partial update). Requires edit access.
Changing sharingType to PRIVATE fails with 403 if the folder still has other members. PATCH cannot change the parent — use PUT /v1/external/folders/{folderId}/move to re-parent or move to the root.
patch/v1/external/folders/{folderId}
Path parameters
folderIdstring required
Folder ID
Request body
Example request
{
"title": "Engineering Sync",
"sharingType": "PRIVATE",
"description": "Daily standup notes",
"color": "#E74C3C"
}Response
Folder updated
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"
}