I would like to get a list of users who liked a specific confluence wiki page. Would also like to retrieve any comments made on that page. How do I do that using the REST API?
Hey Venkat_P,
I'm sure you figured this out by now, but here's what I found:
This is for a whole space:
https://[yourinstance]/rest/api/space/[spacekey]/content/page?limit=100&start=1&expand=children.comment
This is for a page:
https://[yourinstance]/rest/api/content/[pageId]?expand=body.storage,body.view,body.export_view,children.comment
You can find all Atlassians Confluence code docs here:
https://docs.atlassian.com/ConfluenceServer/rest/7.9.1/#api/content/{id}/child-commentsOfContent
I'm looking for how to retrieve the likes, can't seem to find anything.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.