Gemini Community Support Site

This Gemini community support site can be used to find solutions to product issues. You can log in using Open Id, Google Profile and even Facebook. Feel free to ask a question or browse FAQs and documentation. Product tour videos are also available along with how-to videos demonstrating key Gemini capabilities.




Webservice: retrieve all issues in given version

web-app

Hi Folks.

Is it possible, and how, to retrieve all the issues that is in a given version?

I've worked with the ordinary, GetProjectVersions etc. methods, but no GetVersionsIssues

Thanks in advance.

Ps. I'm using version v2.2.6 of Gemini.

Sincinatti
· 1
Sincinatti
Replies (2)
helpful
0
not helpful

I just found an answer myself.

Since there was no direct method for what I wanted to do, I used a filter. This worked just as I wanted. I will go with this for now. If you have anything better. Please let me know, as I want it to be done in the correct way.
The code below is how I've done it.

IssuesFilterEN filter = new IssuesFilterEN();
filter.ProjectID = version.ProjectID.ToString();
filter.Versions = version.VersionID.ToString();

serviceManager.IssueServices.GetFilteredIssuesEN(filter, serviceManager.UserID, 1);

Best regards. Sincinatti.


Sincinatti
· 1
Sincinatti
helpful
0
not helpful

That is the correct way to do this.


Mark Wing
· 9108
Mark Wing