Getting a list of tickets based on a particular project using Fogbugz API
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
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.
精彩评论