1

I don't see something like duplicates (this case duplicates another, or the opposite, cases which duplicate this case) in the XML API docs. How do I get these case numbers?

Fog Creek Case FC1871439

flag

1 Answer

0

This column is currently missing from the available ones in the API. We have a case open to consider this feature for a future release.

This feature is available in version 8.2.14 and beyond! It can be accessed as in the following example:

http://your/fogbugz/url/api.asp?cmd=search&token=MYSECRETTOKEN&cols=ixBugDuplicates,ixBugOriginal&q=29

<response>
 <cases count="1">
  <case ixBug="29" operations="edit,reopen,email,remind">
   <ixBugDuplicates>20</ixBugDuplicates>
   <ixBugOriginal></ixBugOriginal>
  </case>
 </cases>
</response>

This indicates that case 20 is a duplicate of case 29, and case 29 is not a duplicate of any cases.

The XML API documentation has been updated with this information, it can be found at: http://fogbugz.stackexchange.com/fogbugz-xml-api


We are still missing the ability to resolve a case as a duplicate. Please up-vote that question if you work with the API and need to resolve duplicate cases.

link|flag

Your Answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.