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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.