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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.