0

The ruby code I'm using (in conjunction with https://github.com/firmafon/ruby-fogbugz ):

ticket = fogbugz.command(:search, :q => number, :cols => 'sTitle,sTags')

sTitle is returned as expected. sTags is not returned.

flag

1 Answer

1

The column name for the tags field is just tags not sTags. Your query should work if you use the following:

ticket = fogbugz.command(:search, :q => [case number], :cols => 'sTitle,tags')

There is a summary of available XML API columns here as well.

link|flag

Your Answer

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