Hi everybody,
We are trying to access content details which is contains content history and versions, with Confluence REST API. We can do this for a page without any problems, but we need to navigate through all the content on space. In this case, it is very expensive to make a separate request for each content. We are looking for a way that details more than one page at the same time with a request. We couldn't find a way to do this in the REST documentation.
We can do this on Jira side with JQL Search rest resource to access multiple issues history with same request. Jira can give the history of up to 100 issues via single REST call when you expand the changelog.
We need to similar method on the Confluence side.
I would be very happy if there are any methods you can recommend.
Thanks!
Hi @Ömer - OBSS
Using below REST API you can get all the pages in your space and loop over them to perform other operations.
https://<base-URL>/wiki/rest/api/space/{SPACE_KEY}/content?start=0&limit=9999&type=page
Or else you can also search via CQL refer below link -
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.