Skip to end of banner
Go to start of banner

How to list restricted parent pages in a space using Confluence CLI

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 21 Next »

This article explains how to get the list of parent pages that have page restrictions in a space using the Confluence Command Line Interface app.

Instructions: 

Use the getPermissionList action with runFromCsv to get the list of restrictions of parent pages. 


  1. Run the below getPageList action command to get all the parent pages in the space.

     --action getPageList --space “spacename” --title "Home" --children --columns "3, title, space" --outputFormat 999 --file "pagelist.csv"”


  2. Edit the pagelist.csv file from the above cli results, to ensure that the new file contains the Title and Space details.


  3. Run the getPermissionList command to get all the page permissions in the space. This provides only the list of pages that have restrictions. The pages that do not have restrictions are not displayed. 

     --action runFromCsv --file pagelist.csv --continue --common "--action getPermissionList --file "permissionlist.csv" --append" 


    Output of the mentioned command:









Make sure the file is updated with the Title and Space names accordingly.

  • No labels