Am trying to extract the specific data from Json file . Can any of you help me on how to extract:
Data is : {“invoiceNumber”:“Abc- 645687”,“accountNumber”:“DXXX”,“invoiceDate”:“XXXX”,“OrderNumber”:“XXXX”,“soldToDetails”:"; XXXXXXX . "}
I wanted to create a datatable with this data . Can anyone please help.
Use Deserialize JSON activity. It will give you an out put of type JsonObject. Lets us say you store the JsonObject to a variable jsonObject. Now you can get values from the JsonObject like below.