The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

how to add status to commit

Jin Wu
Contributor
September 7, 2021

hi there,

I want to use rest api 2.0 to add status to a commit by below api, but may i know how to specify {key} ?

 

/2.0/repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build/{key}

 

 

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 8, 2021

Hi @Jin Wu,

The API endpoint you mention in your question can be used to get or update an existing build status.

If you'd like to add a new status, you'll need to use

/2.0/repositories/{workspace}/{repo_slug}/commit/{commit}/statuses/build

There is an example also in the above doc:

curl https://api.bitbucket.org/2.0/repositories/my-workspace/my-repo/commit/e10dae226959c2194f2b07b077c07762d93821cf/statuses/build/ -X POST -u jdoe -H 'Content-Type: application/json' -d '{
"key": "MY-BUILD",
"state": "SUCCESSFUL",
"description": "42 tests passed",
"url": "https://www.example.org/my-build-result"
}'

The key can be any value you like, but I suggest that it is unique among that commit's statuses. If the specified key already exists, the existing status object will be overwritten.

If you have any questions, please feel free to let me know.

Kind regards,
Theodora

TAGS
AUG Leaders

Atlassian Community Events