0

I am trying to query all Fogbugz cases that contain Basecamp URL's (which is a custom field), in order to match these against open Basecamp projects/to-do URL's.

The problem is that I can't figure out how to pull custom fields from a case with the Fogbugz API. I can return a list of cases that contain Basecamp URL's, but I cannot get to the actual URL's.

$search = file_get_contents(FBZ_URL.
      "?cmd=search&token=".
       $token.
       "&q=Basecamp+Project+URL&cols=ixBug,sTicket,sTitle,tags,dtDue");

Is there a way to do this?

flag

1 Answer

2

This post tells how to refer to custom fields; once you have that, you just need to specify it as one of the "cols" parameters.

link|flag

Your Answer

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