Confluence · Arazzo Workflow
Confluence Move a Page to a New Parent
Version 1.0.0
Verify a page and a target parent, inspect the destination subtree, then reparent the page.
View Spec
View on GitHub
CollaborationContent ManagementDocumentationKnowledge BaseWikiArazzoWorkflows
Provider
Workflows
move-page-to-new-parent
Reparent a Confluence page under a different page in the tree.
Reads the source page and the target parent, lists the target's children to expose collisions, and updates the source page with the new parentId.
1
readSourcePage
getPageById
Read the page being moved to capture its title, space, status, and the current version number that the update must supersede.
2
readTargetParent
getPageById
Read the intended parent to confirm it exists and to compare its space against the source page's space; Confluence will not accept a move that crosses spaces via parentId alone.
3
listTargetChildren
getChildPages
List the pages already sitting under the target parent so a duplicate title at the destination is visible before the move is committed.
4
reparentPage
updatePage
Commit the move by updating the page with the new parentId, preserving its existing title, space, and status.