Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Can't update PR update api

Nurzat_Zhanabek November 3, 2022
Снимок экрана 2022-11-03 в 15.48.58.png- >
curl https://api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/pullrequests/${BITBUCKET_PR_ID} \
-s -f -S -X PUT \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ${BB_TOKEN}" \
-d \
'{
"reviewers": [
{
"uuid": "'"$REVIEWER_UUID"'" here if i write hardcode id "id" its working
}
]
}'

in this trigger:
pull-requests:
'**':

1 answer

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
November 7, 2022

Hi @Nurzat_Zhanabek  and welcome to the community!

I believe that the variable will not get expanded when you use single quotes for the data. Please try replacing the data with the following, use double quotes:

-d \
"{
\"reviewers\": [
{
\"uuid\": \""$REVIEWER_UUID"\"
}
]
}"

I tried this in a Pipelines build in a repo of mine and the reviewer gets successfully added.

Please feel free to let me know how it goes.

Kind regards,
Theodora

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
TAGS
AUG Leaders

Atlassian Community Events