I'm writing a wrapper for the API and for the search command it requires you specify the column names. Is there a value I can use (like "*") to just return all available columns? Basically I'd like to be able to do this:
http://example.fogbugz.com/api.asp?cmd=search&q=foo&cols=*&token=dummy
Then if I wanted events/latestevent this (I left the commas unencoded for clarity):
http://example.fogbugz.com/api.asp?cmd=search&q=foo&cols=*,events&token=dummy
http://example.fogbugz.com/api.asp?cmd=search&q=foo&cols=*,latestEvent&token=dummy