Is it possible to get page id based on page title.
im my java application i am calling confluence rest api to get the pages.
So i want to get pageid if i pass that respective page title
Hi @Sundar sarma ,
the following rest api https://developer.atlassian.com/cloud/confluence/rest/v1/api-group-content/#api-wiki-rest-api-content-get allows you to pass parameter title and will receive all the related page information including page id.
Hope this helps,
Fabio
The REST API has been changed to a new version, and the old version (referenced in the parent comment) has been removed. This is the new API call:
https://developer.atlassian.com/cloud/confluence/rest/v2/api-group-page/#api-pages-get
So the REST call would be:
https://<your-site>.atlassian.net/wiki/api/v2/pages?title=<page title>
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.