You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I'm trying to write a script to download the artifacts for the most recent build of a particular plan. I can see in Bamboo that this build has artifacts, but the response from the REST API shows none. Is there something I'm doing wrong? I'm using Bamboo 4.0.1
$ curl 'http://my-bamboo/rest/api/latest/result/MRPRJ-MYPLAN?expand=results\[0\].result' # snip <artifacts size="0" max-result="0" start-index="0"/>
Are you sure you don't want to use the Job key instead of the Plan key? The query you are making to the rest api will only show the artifacts which have been Shared.
That was it! The REST API documentation didn't mention using job keys, so I didn't think about that. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi David,
I am new to REST API and looking for this option.
Can you please help me with the command to get artifact using either build number or release id ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Bamboo Command Line Interface has the getArtifact action which handles the REST stuff for you, but you will still need to do as James says to either make it shared (easiest) or access by job.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it visible without logging in? Maybe you can try with a username/password?
curl -u userid:secret ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, it is visible without logging in. Also tried with username/password, same result.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.