I'm trying to find some stats about defects in version one but the reporting and API are getting the type of data I need.
I'm trying to find how long defects sat in a "ready" status and how long defect took to move from "developing" to "testing". I also only want to get it for a subset of the team so I can compare individual developers. I've been trying to get the history of changes for defects but I'm not about to find the detail status.
v1.Scope.where(Name='My Project')
v.first().Workitems[0].History[0].ChangedBy.Name
v.first().Workitems[0].History[0].ChangeDateUTC
// need details status
Is there any way to get the status change so i can compare the difference between dates? Would this be easier in the reporting tool?