I have a few issues under a Version ID: "12345" and Version Name:"ABCD". I need the list of all Issues under this version or list of Unresolved Issues ID.
My code to get all the version:
jira = JIRA(options={'server': 'address', 'verify':'/path/to/ca.crt'}, basic_auth=("usrName","password"))
jra = jira.project('NAME')
versions = jira.project_versions(jra)
print(jira.version_count_unresolved_issues(VersionID) )
After this i need the IssueID or the name of Issues under the Particular Version. Using jira.version_count_unresolved_issues(projID)
i can get number of unresolved issues. But not the name or IssueID