...
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
GET /rest/agile/1.0/epic/{epicIdOrKey}/issue Returns all issues that belong to the epic, for the given epic Id. This only includes issues that the user has permission to view. Issues returned from this resource include Agile fields, like sprint, closedSprints, flagged, and epic. By default, the returned issues are ordered by rank. RequestPath parametersepicIdOrKey Required string Query parametersexpand string jql string maxResults integer validateQuery boolean fields Array<StringList> startAt integer ExamplecURLNode.js Java Python PHP Copy 1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/agile/1.0/epic/{epicIdOrKey}/issue' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json' Responses200400 401 403 404 Returns the requested issues, at the specified page of the results.
Example response (application/json) Copy 1 null Move issues to a specific epicPOST /rest/agile/1.0/epic/{epicIdOrKey}/issue Moves issues to an epic, for a given epic id. Issues can be only in a single epic at the same time. That means that already assigned issues to an epic, will not be assigned to the previous epic anymore. The user needs to have the edit issue permission for all issue they want to move and to the epic. The maximum number of issues that can be moved in one operation is 50. RequestPath parametersepicIdOrKey Required string Body parametersissues Array<string> Unique items: Example
|
...
Atlassian's architecture documentation will help you understand Jira fundamentals and get a high-level perspective of Jira's dependencies.
...