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
What is the reason that the default reviewers or users specified in a Codeowners file of a repository are not automatically added to Pull requests that are created via API?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Benjamin,
Currently codeowners only works via the UI. The reason is when we go to the PR Create screen, it calls the codeowners handler to get what we are suggested to add to the PR. The API does not call this code to get those reviewers.
We kindly request you to watch and follow the feature request below for updates:
🔗 BCLOUD-23663 – Enable Bitbucket Pull Request API to Auto-Add Reviewers Based on CODEOWNERS
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
It's exactly what I need, thanx!
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.
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.