How to extract the exact data from Json file

@divyaag

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.

jsonObject("OrderNumber").ToString
jsonObject("accountNumber").ToString

Deserialize%20JSON

Read more from the below article.

11 Likes