Easy Agile Programs API
Easy Agile Programs provides an API for integration with other systems.
The documentation below is valid as at Easy Agile Programs 2.1 on Jira Server and Data Center. We currently do not publish the API for Cloud.
Notes:
agileBoardSprints is a mapping between sprintIds and columns for each Scrum board in an increment
Issues in Scrum boards are scheduled by assigning them to sprints in Jira Software
Issues in Kanban boards are scheduled using an issue entity property (as Kanban agile boards do not support sprints)
startDate is a Unix timestamp in UTC at the start of the calendar day of the increment
Start and end dates of individual sprints are calculated from the startDate, sprintCount and sprintWeekCount
issueLink... are used to set a link type other than Epic Link
Get Program
GET /rest/eap/latest/program/{programId}
Sample Response:
CODE
|
Get Program Increment
GET /rest/eap/latest/program/increment/{incrementId}
Sample response:
CODE
|
Get Milestones
Milestones are independent of the issues and are only used as markers within programs, therefore you cannot query for all issues within a milestone.
GET /rest/eap/latest/program/{programId}/milestones
Sample response:
CODE
|
Get Issue Entity Properties
Issues on Kanban boards and issues on the Roadmap are scheduled with issue entity properties. You can search for these using JQL:
Search for roadmap issues in a specific increment with the following JQL query:
issue.property[EAP-schedules].tags ~ i_{incrementId}_tr
Search for Kanban issues in a specific increment with the following JQL query:
issue.property[EAP-schedules].tags ~ i_{incrementId}_ti
Then fetch the entity property using the Jira Core REST API: /rest/api/2/issue/{issueKey}/properties/EAP-schedules
Sample issue entity property for Roadmap schedule
CODE
|
Sample Kanban schedule
CODE
|