thur
thur

Reputation: 1074

How to get Committed Date in vsts online?

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

Answers (1)

Marina Liu
Marina Liu

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.

Option 1: by REST API

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.

Option 2: manually calculate by view a work item history

You can view a WIT change history by this way:

  1. Open a work item, and click History.

enter image description here

  1. Then you can view the work item status changed date apparently. And calculate lead time manually.

enter image description here

Upvotes: 2

Related Questions