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.




Learning the Web API

api

Hi, I'm trying to build my custom app which uses Geimini Web Api. I have some questions about this Api

  1. Where can I get documentation for Web Api? Xml for Intellisense?
  2. Is there a way to get "total count of issues"?
  3. How can I check if issue with specified issue-id exists?
  4. It is very slow, e.g. gets 1 issue in 1-2 seconds. Is there anything I can do about it? Change response type? Configure what, where?
  5. How to get issues in chunks, e.g. 10 issues at once (without filters)?

Thanks, Michael

Cipher
· 1
Cipher
Replies (3)
helpful
0
not helpful

This all depends on what language you are using to program. If .NET then you should use the web services API DLL: http://www.countersoft.com/downloads.aspx

Otherwise, please see http://api.countersoft.com


Saar Cohen
· 5000
Saar Cohen
helpful
0
not helpful

Thanks for reply. I use .NET (C#). Looking at http://api.countersoft.com/ApiIssues.aspx I cannot find a method which would return total number of issues, also a method which would tell me if specific issue exists.

Please advice.

Regards, Michael


Cipher
· 1
Cipher
helpful
0
not helpful

You should use our DLL as it does all the work for you.
GetPagedFilteredIssues will get the issue count as well as the paged issues.
As for issue exists, use GetIssue and you'll get an invlaid URI exception if it does not exist.


Mark Wing
· 9108
Mark Wing