Loops through API requests to collect all pages in a space and lists their titles.
#set($allPagesInSpace=[])
#set($link="/wiki/api/v2/spaces/$space.id/pages?limit=250")
#foreach($n in [1..1000]) ## Range can be set to bigger number if needed
#set($pages=$ConfluenceManager.get($link))
#set($noPrint=$allPagesInSpace.addAll($pages.results))
#if($pages._links.next)
#set($link=$pages._links.next)
#else
#break
#end
#end
#foreach ( $page in $allPagesInSpace )
<li>$page.title</li>
#end Display Confluence page edit and view restrictions to provide essential permission details, including users, groups, and inherited access
Display space details such as type, status, creation date, and links to permissions and calendars
Display the creation date of the current Confluence page
Insert a page break in documents generated from a Confluence page
Generate IDs in Base32 format
Retrieve and display all page content properties in an AUI sortable table
Find images within page attachments. Handy for reusing files and updating them all at once.
Make sure content is included only in printed or exported versions of a Confluence page
Display an overview of all pages in a space, including title, version, and last updated date
Displays a list of pages in a specific space with a specified title or label