0

I have been working on exporting work items and importing it to another environment using Azure DevOps Rest API. Few of the work items are in russian language eg the work item title and description. The export work items work well and i could see the title and description in russian, but when importing the work item using rest api: [https://docs.microsoft.com/en-us/rest/api/azure/devops/wit/work-items/create?view=azure-devops-rest-6.0] the title and description was not imported well. I am seeing something like ???? ?????????/????????? ?????? ?????????, ????????? for work item description. Is there any encoding to do before importing the work items?

Thanks

1 Answers1

0
Is there any encoding to do before importing the work items?

No, there is no encoding can be done before importing the work items using azure devops-Rest Api.

You can Refer this document to know about import, export, and manage work item types.

  • Hi, I have managed to fix this by encoding the json body in UTF8 format before importing the work item in. This link helped me to get some idea: https://stackoverflow.com/questions/23256911/encode-a-string-in-utf-8 – Jagendran Balakrishnan May 11 '22 at 08:47