0

Hello, I need to get the list of issues which were opened (were in active state) on a specified date. For example I want to see the state of project at 14th September 2010. Can I do this using XML API. Maybe I need to perform special search or create some filter? Would appreciate any help or ideas.

flag

2 Answers

1

i would think the easiest solution would be to use the cmd=search, and use the parameter q with "opened:". you can test it in your fogbugz search field.

q=opened:01/14/2010 (pass with the api)

opened:11/18/2010 (in your fb search bar)

You can find documentation on the XML API right here.

link|flag
This is exactly how you should go about it. – Bradford Nov 26 2010 at 21:30
0

As I understand it, q=opened:<date> will only get the number of cases that were actually opened on that specific date. The goal is to query the number of cases that were open on a specific date, which will include cases that were opened before that date that are still open on that date. I would like to know how to do this as well. It appears that the web interface can do this using a filter showing "Changes over time", but how can the same query be run through the XML API?

link|flag

Your Answer

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