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
Hola!
I've discovered API documentation, but still suffer with finding the way to add or delete reviewers from existing pull request. As I've understood, the endpoint I need is PUT /2.0/repositories/{username}/{repo_slug}/pullrequests/{pull_request_id} ,
but I am getting 500 errors like "This QueryDict instance is immutable" or 400 with
"title": [
"This field is required."
]
Could someone please provide CURL snippet or even better POSTMAN one?
Have a look at this article I just published about this:
Add a reviewer to a PR using the REST API and Forge
It contains a link to a fully functional Forge app to add reviewers to a PR (here is the link if you want to check that out directly: Assign PRs randomly to a specific list of users in Bitbucket Cloud ).
Cheers,
Caterina
Hi!
You are using the correct endpoint to update reviewers. Title is required, so make sure you send that along and also if you do use curl, make sure to send the content type of json.
I will gladly provide you the curl command that you need to be able to add and/or delete reviewers from an existing PR using our API.
Steps:
You will need the uuid for the user(s), which you can get by calling this endpoint.
1. Save your request payload to a file:
printf '{ "title": "README.md edited online with Bitbucket", "reviewers": [{ "uuid": "{replace_me_with_an_actual_uuid}"}]}' > payload
2. Call the endpoint to update your reviewers:
curl -X PUT -u 'username:password' https://api.bitbucket.org/2.0/repositories/{owner}/{repo_slug}/pullrequests/{pullrequest_id} -d @payload --header "Content-Type: application/json" -v
You were likely getting the immutable error due to missing the content type.
Let us know if you have any further difficulty!
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.
FYI I found that if you have the Bitbucket username, you can also pass it {"username": "<username>"} directly without having to go lookup the UUID first
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Steve Muskiewicz Tried this: Does not work. Gives me a Malformed reviewers list.
Is there something wrong with syntax ?
"reviewers": [
{
"username":"user1"
}
]
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@[deleted] username was deprecated as part of Atlassian's privacy changes. see https://developer.atlassian.com/cloud/bitbucket/bitbucket-api-changes-gdpr/#removal-of-usernames-from-user-referencing-apis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
nowadays the users api is deprecated. https://developer.atlassian.com/bitbucket/api/2/reference/resource/users/%7Busername%7D/members
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I want to add the repository's default reviews as reviews. What should I do in this case ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Edit: I wrote an app to do that. Check it out in the Add a reviewer to a PR using the REST API and Forge article.
Since the answer above has been written a few things changed in the payload format for updating the PR reviewers:
- the title is not required anymore
- the reviewers can be specified with the following JSON:
{ "reviewers": [
{ "account_id" : "<Atlassian Account ID>" }
]}
Make sure that the reviewer has permission to access the repository, otherwise a generic error will be returned stating:
{ "type":"error",
"error":
{ "message": "reviewers: Malformed reviewers list",
"fields":{"reviewers":["Malformed reviewers list"]}
}
}
This can be resolved by granting the user access to the repository.
The specified reviewer can't be the author of the pull request (meaning the user who created the pull request). When that's the case, the request fails with the following error:
{ "type":"error",
"error":
{ "message": "reviewers: CCurti is the author and cannot be included as a reviewer.",
"fields": {"reviewers":["CCurti is the author and cannot be included as a reviewer."]}
}
}
Caterina
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.