The response object looks like this: (this response is coming form the server)
{
"abc": [{
"xyz": "INFO 1",
"pqr": "INFO 2"
},
{
"xyz": "INFO 3",
"pqr": "INFO 4"
}]
}
The expected value from this object
xyz, INFO 1
xyz, INFO 3
Could you help me to retrieve this value from the object?