Skip to content

manage_folders

Unified tool for Confluence folder operations. Folders are a newer Confluence Cloud feature for organizing content within spaces.

ParameterTypeRequiredDescription
actionstringYesSee actions below
folder_idstringVariesFolder ID
space_idstringVariesSpace ID
titlestringVariesFolder title
parent_idstringNoParent folder ID (for create)
versionintFor updateVersion number (current + 1)
limitintNoResults per page (default 25)
cursorstringNoPagination cursor

List all folders in a space.

Required: space_id

{
"action": "list",
"space_id": "131073"
}

Response:

[
{
"id": "87654321",
"title": "Engineering",
"space_id": "131073",
"status": "current",
"version": 2,
"created": "2025-01-05T10:00:00Z",
"updated": "2025-02-20T14:30:00Z"
}
]

Get a folder by ID.

Required: folder_id

{
"action": "get",
"folder_id": "87654321"
}

Get child folders of a folder.

Required: folder_id

{
"action": "get_children",
"folder_id": "87654321"
}

Create a new folder.

Required: space_id, title

{
"action": "create",
"space_id": "131073",
"title": "New Folder",
"parent_id": "87654321"
}

Update a folder title. Version must be current version + 1.

Required: folder_id, title, version

{
"action": "update",
"folder_id": "87654321",
"title": "Renamed Folder",
"version": 3
}

Delete a folder.

Required: folder_id

{
"action": "delete",
"folder_id": "87654321"
}