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
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.
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.