v1
latestOpenAPI 3.1.02026-07-226875162.5 KBFolder
Move Folder
Move a folder under a new parent, or to the root level with newParentId: null. The target parent must be in the same workspace and you must have access to it. You cannot move a folder into its own subtree.
Use sharingTypeUpdateStrategy to control how the folder's sharing permissions are handled after the move (defaults to KEEP_EXISTING).
Requires edit access to the folder.
put/v1/external/folders/{folderId}/move
Path parameters
folderIdstring required
Folder ID to move
Request body
Example request
{
"newParentId": "98765",
"sharingTypeUpdateStrategy": "KEEP_EXISTING"
}Response
Folder moved
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"
}