is there any REST URI to get the bamboo build details using bitbucket commit id?

Partha Sarathy August 10, 2017

Hi,

Im looking for an REST URI to get the bamboo build details using bitbucket commit id?  is there any way to get the details of build from bamboo with bitbucket commit id.

Thanks

1 answer

0 votes
devpartisan
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 30, 2017

No and yes.

No because you can't get the Bamboo build details from Bitbucket in one REST API call.

Yes because you can ask Bitbucket for a "build status" for a commit, which will give you some information that you could use to make a 2nd call to Bamboo. From Bitbucket Server, you GET /rest/build-status/1.0/commits/{commitId}, which returns `{ ... "values": [{ ..."name": "REPO-MASTER-42", "url": "https://bamboo.example.com/browse/REPO-MASTER-42",
... }] ...}`. Between the name and the url, you can parse out enough information to make a REST call to Bamboo for the build results.

Suggest an answer

Log in or Sign up to answer