I am attempting to review all the current pages within a certain space- is there a way to download the basic info of all of them (not the content)?
We currently have 300+ pages and it would save time to be able to see page name/child page, author, etc all listed in one doc/sheet.
Thank you!
Hello @Lourdes Rogel !
Going straight to the point, there is not a native method to achieve the desired outcome.
As I understand, you need to export the page tree containing the pages and their child titles, creators, and some other information all within a single document.
There is a chance that third-party applications such as Confluence Command Line Interface or ScriptRunner might be able to help you with the desired flow.
You can take a look at the tools I mentioned here:
You should also be able to reach out to their support for further information here:
I hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Lourdes Rogel - With the Confluence Command Line Interface you can use the getPageList action. Here's a CLI command that will produce a detailed CSV file for all of the pages in the space "MYSPACE":
acli --action getPageList --space "MYSPACE" --outputFormat 998 --file "MYSPACEPAGES.CSV". --server "myconfluence.atlassian.net/wiki" --user "myusername@mydomain.com" --token "myapitoken"
FYI I'm the product manager for the Bob Swift CLI App family.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.