How to batch update multiple Azure DevOps Work Items with one request via the Rest API?

Viewed 252
1 Answers

I recommend to you to use the SDK which is into the NuGet package Microsoft.TeamFoundationServer.Client so not rely directly on the Rest API as that is a wrapper of the API.

If you search for examples in order to use that SDK you can find them here, https://github.com/microsoft/azure-devops-dotnet-samples/tree/main/ClientLibrary/Samples

The method that I am using it is into the WorkItemTrackingHttpClient class method client.ExecuteBatchRequest(my list of requests);

Related