Hi,
I am using this link
http://example.myhost/rest/api/content/{id}
to get the content of my page.
But how do I get "Content: Person C_Version 01C" (shown below)?
Hi,
You could read the content of a page with the body expanded.
http://example.myhost/rest/api/content/{id}?expand=body.storage
Please refer to the Confluence REST API examples for more details: https://developer.atlassian.com/server/confluence/confluence-rest-api-examples/
And you'll get Value with unbreakable line which is actually the content of page.
Is it possible to get better formatting?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Same question. If the page has an index and links to the sections on the same page. How to directly access the data content on links through the REST API's?
To be precise, Say I have a page id 12345, on confluence, if I am accessing :
http://helloworld/wiki/pages/12345/XYZ#XYZ-abcdabcd this on the url, how do we access the underlined part through REST API?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
this is what im trying to figure out as well
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The Atlassian API doesn't have a way to return just the part of the page following an anchor. The best you can do is get the page by the space and title, then parse for the html anchor.
Assuming your URL has a space, like:
https://helloworld/wiki/spaces/SPC/pages/12345/XYZ#XYZ-abcdabcd
I think you would do it with
page=confluence.get_page_by_title('SPC', 'XYZ', expand='body.storage')
content=page['body']['storage']
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Im getting 404: Page Unavailable error with below REST API call. Kindly help. Any permission issue? I provided Basic Auth in Postman with my username and accesstoken:
http://mypage.atlassian.net/rest/api/content/32991?expand=body.storage
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.