I want to take a particular value from the Http request output .
Hence I deserialised the output and used for each to fetch the value from the json.
From the library component it is running fine , but when ram from the performer , it is not working .
It is failing with the following message .
The json response .
The error.
1 Like
I have answered with regards to the same in ur another post
Check this out
Cheers @Ragavi_Rajasekar
Anil_G
(Anil Gorthi)
3
@Ragavi_Rajasekar
Can you try like below
jObj.SelectTokens("$..value").Select(Function(x) x.ToString).ToArray
This gives you array of strings …which are all the value type strings
JObj is the deserialize output
The output of above expression is an array of strings …use the above in assign activity
Cheers