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

How to get list of all projects and plan names from bamboo server

jagannathan December 21, 2016

I need to pull all Project and plan file name in bamboo server to get total count.

Using rest api or cli . Please help

1 answer

1 vote
rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 21, 2016

Hello jagannathan,

curl -k -u [USERNAME] -p -H "Content-Type: application/json" -X GET [BAMBOO-BASE-URL]/rest/api/latest/project

https://docs.atlassian.com/bamboo/REST/5.14.3.1/#d2e1539

Kind regards,

Rafael

jagannathan December 22, 2016

Thanks for helping . But when I ran this command on Bamboo server. Im getting below error.

 

curl: (3) [globbing] errpr: bad range specification after pos 2


How to proceed further. please help me 

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 22, 2016

Hello jagannathan,

Have you replace the [USERNAME] (i.e. admin) with a Bamboo's username and [BAMBOO-BASE-URL] with the URL to your Bamboo instance (i.e. http://localhost:8085) ?

Doing the replaces, you would have:

curl -k -u admin -p -H "Content-Type: application/json" -X GET http://localhost:8085/rest/api/latest/project

Kind regards,

Rafael

jagannathan December 26, 2016

Thanks Rafael. It's working.

Since I'n not admin in bamboo server it is getting listed only to the projects which I have access. Is my assumption is correct ?

Is there a similar way to get list of all plans list.

 

Regards,

Jagan

rsperafico
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
December 27, 2016

it is getting listed only to the projects which I have access

Yes, you are correct on your assumption.

Is there a similar way to get list of all plans list.

curl -k -u admin -p -H "Content-Type: application/json" -X GET http://localhost:8085/rest/api/latest/project/<PROJECT_KEY>?expand=plans

https://docs.atlassian.com/bamboo/REST/5.14.3.1/#d2e1553

 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events