I want to get all the history of a case. Is this possible through the api?
I m looking for a simple solution for support case management. The final nominees are Fogbugz and the open source OTRS.
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.
I m looking for a simple solution for support case management. The final nominees are Fogbugz and the open source OTRS.
In our FB configuration a new case is category = "Bug" per default. I would like to change that to "Inquiry". How to do that?
I want to get all the history of a case. Is this possible through the api?
For example, search for editedBy:<USER> madeChange:"changed estimate field" (possibly: editedOn:Yesterday). Is this possible?
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. ...
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 ...
I am using Fogbugz as my Bug tracking software, and was thinking on a schedule so that I can upgrade my Bug tracking software once in a while according to that schedule. I was just curious on how ...
Our company have recently upgraded our FogBugz installation to version 7, downloaded the latest post-commit files, and followed the latest instructions on integrating SVN with FogBugz (to get lists of ...