0

I'm using the Python fogbugz module to access the XML API:

from fogbugz import FogBugz
fb = FogBugz(url=S_FOGBUGZ_URL, token=TOKEN)
respBug = fb.search(
    q=str(ixBug),
    cols="sTitle,sPersonAssignedTo,sProject,sArea,sCategory,sPriority,sStatus,events",
)

How can I add a custom field to the list of columns?

Andreas Haferburg
  • 5,189
  • 3
  • 37
  • 63

1 Answers1

0

Use customFields as column name. The XML in the response is pretty messed up though, with weird tag names.

I found the answer by looking at the correspondence of the Firefox web client with the server.

Andreas Haferburg
  • 5,189
  • 3
  • 37
  • 63