Is there a way to retrieve a list of work items filtered by some field value?
E.G.:
site/tfs/SomeCollection/wit/workitems?Status=Done&asof={datetime}&api-version=1.0
My goal is to use the Rest API to:
- Go to a specific Iteration (including the current one),
- get a list of Backlog Items,
- foreach PBI > Get a list of Done Tasks/Bugs,
- foreach Done Task/Bug > Get information
Then use that information to do whatever I need.