I want to be able to get a list of issues given a:
Project Name and Release Version
this seems like a basic JIRA soap API 101 request
It seems, looking at the documentation:
you can get issues by:
- Filter
- SearchTerms
- SearchTerms and Project
but not the above. Is this a complete oversight or i am missing something
i would expect to see something like this:
RemoteIssue[] issues = _soapService.getIssues(string project_, string version_)
any help?
UPDATE:
I see that JIRA 4.0 is out but i can’t find any documentation if the API has changed to support this request above. Can anyone find this link to answer that questions.
It’s not possible with the current JIRA API. They probably will make it in JIRA 4.0.
In JIRA Client we solved this problem by requesting IssueNavigator.jspa (Find Issues tab) with search conditions in URL and requesting RSS output; then parsing the RSS.
I’ve explained some of the intricacies of dealing with JIRA remotely, including searching, in this webinar: http://blogs.atlassian.com/news/2008/11/killer_jira_cli.html
Hope this helps