@sandeep_deshpande - So this is Json contain a Json array.
So You have use this hierarchy only Let’s say I want **rate ** of the marketValues so these are the steps:
- Read the text.
- DEserialize the JSON using Deserialize Json Object activity and type argument will be Newtonsoft.Json.LinqJObject result of this activity will be Res
- Then use Res(“marketValues”).ToString and save it in variable var1.
- Then Use Deserialize Json Array activity with Type Argument and pass the var1 in input and say the output of this activity will be Res2
- Then use For Each loop with Newtonsoft.Json.LinqJObject and pass the Res2 in For Each.
- In for Each use Write line activity and pass item(“rate”).ToString.
It will print all the rate in console.
Now it’s on you how you want to use it.
Best!!
Anmol