Is there an api endpoint to get all epics?
Hey Logan,
As Epic is just an issue type, please try querying using this end-point and see if you get list of epics accordingly.
where jql will define issuetype="Epic"
https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/search-search
Thanks
Chander Inguva
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For me it was:
/rest/api/3/search?jql=project%3D10000%20AND%20issuetype%3DEpic&fields=id,key,summary
The project ID needs to be set with your project. Retrieve all project IDs with:
/rest/api/3/project
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.