You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
I'm using Bitbucket server and I want to get the general comments of a pull request via the REST API. But somehow it does not work.
I've used https://bitbucket/rest/api/1.0/projects/MYPROJ/repos/myrepo/pull-requests but the response is a JSON object, with a lot of data, but the only reference to comments is:
"properties": { "commentCount": 12,"openTaskCount": 0,"resolvedTaskCount": 0},
When I take a specifc pull request using: https://bitbucket/rest/api/1.0/projects/MYPROJ/repos/myrepo/pull-requests/2 then I will get another JSON object wit a lot of data, but no reference to any of the comments at all.
I only get the particulars of a comment using https://bitbucket/rest/api/1.0/projects/MYPROJ/repos/myrepo/pull-requests/2/comments gives me an error: "The path query parameter is required when retrieving comments."
Explicitly querying for comments with https://bitbucket/rest/api/1.0/projects/MYPROJ/repos/myrepo/pull-requests/2/comments/2916 does give me all the details of that specific comment, but I can only get the commentid by looking in the UI.
So can somebody explain how to get all general comments of a pull request?
Thanks,
Rudy
Hi Rudy,
I believe the best way for you to get all the comments of a pull request is to use the activities endpoint.
You'll have to filter out anything that is not a comment, but it's going to be easier to do than grabbing comments individually for every file.
As you discovered, the comments endpoint requires specifying a path
as a query parameter, so only allows retrieving comments per file.
An example of this would be:
https://bitbucket.example.com/rest/api/1.0/projects/EXMP/repos/example/pull-requests/1/comments?path=path/to/file.java
I hope this helps,
Felix Haehnel
Graduate Developer
Bitbucket Server
Thanks Felix, The activities endpoint will do it for me. It is way more data then I need, but better then nothing!
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @piyush_kumar_singh @Paramanand Dhur1
Unfortunately, there is no end point to get all comments in a single shot.
But you could use the mechanism suggested by Felix above.
For retrieving the changes in the PR, please use
https://docs.atlassian.com/bitbucket-server/rest/7.14.0/bitbucket-rest.html#idp323
Thanks and Regards
Aditya
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.