Easy Agile Programs provides an API for integration with other systems.
We currently do not support API access for the Cloud version of Easy Agile Programs.
The documentation below is valid as at Easy Agile Programs 6.4.0 on Jira Server and Data Center.
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
-
endDate is a Unix timestamp in UTC at the end of the calendar day of the increment
-
Start and end dates of individual sprints are calculated from the increment startDate and the sprintCadences properties(sprintPosition, weekCount)
-
issueLink... are used to set a link type other than Epic Link
Get Program
GET /rest/eap/latest/program/{programId}
Sample Response:
|
Get Program Increment
GET /rest/eap/latest/program/increment/{incrementId}
Sample response:
|
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:
|
Get Team PI Objectives
Availability: Easy Agile Programs version 4.6.0 and later
GET /rest/eap/latest/program/{incrementId}/{boardId}/teamObjectives
Successful response type: an array of JSON objects:
{
actualValue?: number | null;
boardId: number;
description?: string;
id: number;
incrementId: number;
name: string;
planValue?: number | null;
type: "Committed" | "Uncommitted";
}[]
Sample response:
[
{
"id": 38,
"name": "Objective two",
"planValue": 3,
"type": "Uncommitted",
"incrementId": 513,
"boardId": 1136
},
{
"id": 37,
"name": "Objective one",
"planValue": 5,
"type": "Committed",
"description": "Objective description",
"incrementId": 513,
"boardId": 1136
}
]
Get Issue Entity Properties with JQL and the API
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
|
Sample Kanban schedule
|