If there is one Sprint named as sample sprint then how many issues in this sprint have a priority high.How to extract data for this using jira api?
Hello,
You can use Jira Rest Api for it:
https://docs.atlassian.com/software/jira/docs/api/REST/7.12.0/#api/2/search-search
You could pass the jql parameter like this
priority = High and sprint = yoursprint
It would return you all issues, which satisfy this JQL query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.