Azure DevOps : How to export the Work Items from an Azure DevOps Project using REST APIs?

Viewed 37
1 Answers

No, there doesn't have a built-in feature to achieve your requirement.

If you use F12 to capture the network traffic you will find the related request structure like this:

enter image description here

CSV file was not been uploaded directly, it was firstly been parsed and then put it into the request.

It is obviously unrealistic to use such a request because it is too complicated.

A feasible solution is to use the REST API to get the workitems information, and then save this information to a CSV file. Then read the CSV file information and fill it into the REST API of Create Workitems.

Related