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

Time:09-20

My old Azure DevOps Organization has multiple projects and I'd like to export and import the Azure DevOps Project between the organizations, especially the Work Items in Boards.

enter image description here

I came across the Microsoft document - 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