Reputation: 1539
I'm wanting to list all tickets of a certain project using the Fogbugz API. I have the FogBugz project ID and name, now im not too sure how to get the tickets for the project.
I've looked on their API docs and unable to find this option, does anybody know how you are able to do this?
Thanks in advance
Upvotes: 0
Views: 155
Reputation: 1432
Sure, you just use the search function:
https://your.fogbugz.com/api.asp?token=yourtoken&cmd=search&q=project:myproject&cols=sTitle,sPersonAssignedTo
You can also use q=project:"=12"+status:active
where 12 is the project ID.
edit that should do it.
Upvotes: 3