Our organization is considering establishing an enterprise PI/Sprint calendar in Jira Cloud which might be implemented via global automation.
Anyone know if there any way we can automate Jira Align to create the corresponding PIs and anchor sprints using native tooling (just Jira Align; or via Jira Align API and a bit of code)?
if not with native tooling, anyone do this using other tools?
Thank you.
Jira Align API 2 allows for the creation of Program Increments and Anchor Sprints using something like the example HTTP POST Request below. The term Release is used for Program Increment in Jira Align API calls.
POST https://[...]/align/api/2/Releases
{ "title": "string", "shortName": "string", "type": 0, "status": 0, "description": "string", "startDate": "2023-07-26T23:28:42.836Z", "endDate": "2023-07-26T23:28:42.836Z", "testSuite": 0, "releaseNumber": "string", "portfolioId": 0, "scheduleType": 0, "roadmap": 0, "budget": 0, "predecessorId": 0, "health": 0, "score1": 0, "score2": 0, "score3": 0, "score4": 0, "blendedHourlyRate": 0, "divisionId": 0, "programIds": [ 0 ], "productIds": [ 0 ], "regionIds": [ 0 ], "anchorSprintIds": [ 0 ], "programAllotments": [ { "programId": 0, "allotment": 0 } ] }
Thanks Alan. We'll try it. Keep you posted.
Thank you :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For info:
Jira Align Tech Support has now had confirmation that our REST API does not currently support creating Anchor sprints. The information given above tries to use anchor sprint ids - but no where in the given example sets the anchor names and dates so it will fail
Adding the is ability has been included for consideration in a our future plans (roadmaps) but there is no confirmation it will be added and no ETA for a release
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Colin Weaver or @Allan Maxwell - is there a JAC ticket number available for this future enhancement to the API where we can follow and vote for the suggestion? Thanks!
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.