Hi suppose I have an issue - MG-662 of type epic then is there an api to get the child issues in this epic? using the rest version 3 api only ?
Source-
Yes, there is a dedicated endpoint: https://developer.atlassian.com/cloud/jira/software/rest/api-group-epic/#api-rest-agile-1-0-epic-epicidorkey-issue-get
Note that this is endpoint if part of the Jira Software REST API as "epic" is a software-specific concept.
You can use the issue search API resource to find issues using JQL. Refer to the documentation for more details.
To search for child issues, you can use the following JQL:
parent = MG-662
As a result, your API request might look like this:
https:/mysite.atlassian.net/rest/api/3/search/jql?jql=parent=MG-662
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.