Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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.

...

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.

    Code Block
    themeMidnight
     --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.
    Image Modified

  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. 

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


    Output of the mentioned command:


...