if you want to access that then use deserialize json and from output jobj("completedCycles") will give you the jarray which can be access further like this jobj("completedCycles")(0) - this gives first element of array
@Mathkar_kunal ,
Yes Now we can say that its an Array.
But your "friendly " does not belong to that array that array is Null i believe.
Can you share that input file?
full json is very big and i cant share because of security concerns.
Can you help me if that aray is closed then how can i extract that required value?
@Mathkar_kunal ,
Ok .Assuming that your input will be in a text file,
1.Use a Read Text File activity
2.Store the output in a string variable Lets say “JsonString”
3. Use “Deserialize Json” Activity to deserialize the json string to Jobject
4.Ouytput of the Deserialze Json activity will be “JsonObject”
5. Then you have to see whether your required output(Friendly) is inside the array or not
6.If its inside the array then you have to retrieve that item using JsonObject("ArrayName")(0)("friendly").ToString
7. Or if it is not inside the array You can directly write JsonObject("friendly").ToString
Note : If the value “friendly” is repeated several times in the same array then you have to change the array index from 0 to 1 2 3 etc