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.
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"”
- Edit the pagelist.csv file from the above cli results, to ensure that the new file contains the Title and Space details.
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.