Hi,
We are using Bamboo for CI and need to be able to create projects and plans via the REST API.
I've looked in the network inspector at what the UI does when you add a project etc, but this doesn't really look like APIs we could consume from our application code like we do with the other REST APIs? (e.g. Project permissions).
It is important for us to be able to create at the very least projects from the REST API, which will then enable us to put the relevant permissions in place afterwards. The same would then apply for creating an empty plan, so we can set permissions afterwards too.
If this is a feature gap, please can you let me know how we can get this added?
Thanks,
Mike.
How about using the Bamboo Specs - https://confluence.atlassian.com/bamboo/bamboo-specs-reference-documentation-894743916.html
You can create projects:
Project project = new Project()
.key("PROA")
.name("Project A")
.description("My Project A with all A-plans");
Plans:
Plan plan = new Plan(project, "My Plan One", "PLAN1")
.description("This is an example of a plan")
.enabled(true)
.stages(stage1)
.triggers(scheduledTrigger)
.planBranchManagement(planBranchManagement)
.dependencies(planDependencies)
.linkedRepositories(myGitRepo)
.planRepositories(myBitbucketRepo)
.variables(var1, var2);
and much more -
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.