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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

How do I create versions and deploy via Bamboo REST API?

I am following the guides posted on the Bamboo documentation, but hitting these endpoints do not work in Postman. Here is the guide I am using:

https://developer.atlassian.com/server/bamboo/rest-api-deployment-triggers-for-bamboo/

I get a response code of 415 - Unsupported Media Type, even though I am setting the content-type as application/json in the headers. 

The API documentation below specifies an additional parameter for creating a version or release, but this does not change the outcome:

https://docs.atlassian.com/atlassian-bamboo/REST/5.12.2/#d2e2023

1 answer

0 votes
Alexey Chystoprudov
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Mar 09, 2018

Here're steps worked for me:

Create release

curl -X POST 'http://localhost:9087/bamboo/rest/api/latest/deploy/project/7405569/version' -u admin:admin -H "Accepts: application/json" -H "Content-Type: application/json" -d '{"planResultKey" : "ACC-TST-9", "name" : "release-3"}' | jq '.'

The name field accepts plan variables in the following format:

${bamboo.variable.name}

Example

{"planResultKey" : "ACC-TST-9", "name" : "release-${bamboo.variable.name}"}'

 

Deploy release

curl -X POST 'http://localhost:9087/bamboo/rest/api/latest/queue/deployment/?environmentId=7536641&versionId=28803073' -u admin:admin -H "Accepts: application/json" | jq '.'

@Alexey Chystoprudov,

I am running into issues when I am trying Deploy a release using Bamboo REST API.

Command

curl -X POST 'https://myhost/rest/api/latest/queue/deployment/?environmentId=12345&versionId=ABC_XYZ-1.0.0-123' -u user:password

 

Error:

<html>
<head>
<title>Page not found</title>
</head><body>
<h1>Page not found</h1>
<p>
Sorry, the page you were trying to reach does not exist. Try going back to the dashboard and browse the site to find the page you were looking for. </p>
<h4>Go to...</h4>
<ul>
<li><a href="/">Site homepage</a></li>
</ul>
</body>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events