I need to pull all Project and plan file name in bamboo server to get total count.
Using rest api or cli . Please help
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
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
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
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
It looks like you're new here. Sign in or register to get started.