Reputation: 1074
I'm using the Scrum Template and one of the Status is Committed, but there is no field for Committed Date. I have: Created, Closed, Accepted Date..
How can I get it?
Upvotes: 0
Views: 1281
Reputation: 38106
There is no field for you to get a work item status changed date. But There has other two ways for you to get the date.
You can use get a list of work items revision to get a work item revisions by
GET https://account.visualstudio.com/DefaultCollection/_apis/wit/workitems/id/revisions?api-version=1.0
Then use System.State
, System.CreatedDate
and System.ChangedDate
parameters in output to calculate the lead time between two status.
You can view a WIT change history by this way:
Upvotes: 2