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.
Hello Bitbucket team,
I need to get a pull request 's reviewers that approved the pull request. Could you please advise how to do it using bitbucket rest API 2.0?
G'day Iuliia!
Welcome to the Bitbucket Cloud Community! :)
This page here will advise you on how to list information about a certain pull request based on the pull request ID (this can be found at the end of the URL on the pull request or in the UI):
https://developer.atlassian.com/cloud/bitbucket/rest/api-group-pullrequests/#api-repositories-workspace-repo-slug-pullrequests-pull-request-id-get
To authenticate with the /2.0/repositories endpoint, you will first need to configure an AppPassword - a guide for setting this up can be found here:
https://support.atlassian.com/bitbucket-cloud/docs/create-an-app-password/
For example - this cURL command will give you information about the pull request, including a list of the reviewers on that pull request along with their role:
curl --request GET \
--url https://api.bitbucket.org/2.0/repositories/{workspaceID}/{reposlug}/pullrequests/{id} \
--user {username}:{AppPassword}
NOTE: You will need to remove the curly braces and replace workspaceID, reposlug, id, username, AppPassword with actual values.
Hope this helps.
Cheers!
- Ben (Bitbucket Cloud Support)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.