I am using Confluence Rest API to List the child pages and descendants of particular space content where the limit I mentioned is 999 although I can only get response of few pages, How to get complete pages through content of space.
Which API url I can use ?
Note: https://<domain>/confluence/rest/api/content/{contentID}/child?limit=999&expand=page.children.page.children.page.children.page.children.page.children.page.children
The above URL lists upto 5loops as I repeated 5 times of (page.children) rather than this how can i list the child and descendants ?
Note: https://testbapps.alacriti.com/confluence/rest/api/space/{space_key}/content?limit=999
With the above URL getting response of content but repeatedly and I want to get only main Pages of Content. So What URL I can use ?
Hi @FarhaShaik ,
welcome to the Atlassian community!
Rest API https://developer.atlassian.com/cloud/confluence/rest/v1/api-group-space/#api-wiki-rest-api-space-spacekey-content-get is the correct way to retrieve all pages in a space.
Depth parameter is, by default, all so it should retrieve all pages within your space.
depth
string
Filter the results to content at the root level of the space or all content.
all
Valid values: all
, root
About the limit of results, you cannot get 999 items in one shot because of a limit in the result. This limit is to avoid perfomance issues. So you need to use startAt parameter and pagination (https://developer.atlassian.com/cloud/confluence/rest/v1/intro/#status-code).
Hope this helps,
Fabio
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.