English 中文(简体)
fogbugz: Is there a way to view the history of a case using the api
原标题:
  • 时间:2010-01-26 14:05:06
  •  标签:
  • fogbugz

I want to get all the history of a case. Is this possible through the api?

最佳回答

Execute the search command, supplying the bug ID as the query (q parameter) and asking for the events column in the results (with the cols parameter). The URL for this will look like:

http://server/api.asp?cmd=search&q=1000&cols=events&token=xxx

In the returned XML, the <case> element (there will be just one if the bug ID is valid) will have an <events> child element with <event> children containing the history; the XML format is documented in the API documentation. If you just wanted to dump the comments on a case, for example, you could enumerate the results of the XPath query /response/cases/case/events/event/s.

问题回答

The folks at Fog Creek Software have started a fantastic "StackExchange" using, essentially, the same software as Stack Overflow. You might want to check it out.

Fogbugz Knowledge Exchange





相关问题
fogbugz vs. OTRS

I m looking for a simple solution for support case management. The final nominees are Fogbugz and the open source OTRS.

Fogbugz XML_API PHP CURL File upload

I have built a php script which receives values in $_POST and $_FILES I m catching those values, and then trying to use CURL to make posts to FogBugz. I can get text fields to work, but not files. ...

VS 2010 addin for Fogbugz?

I m starting a project in Visual Studio 2010 and I d like to use FogBugz in conjunction with it, but the addin supplied appears to be for VS 2008. Is there a version that works with 2010? [crosses ...

热门标签