capturing multiple values from json repose which matches the text check

Hi Experts!

I need to capture 2 id from a JSON which satisfies a condition that ‘status’’ should be equal to ‘‘approved’’.what is the easiest way to capture the values and passing to the subsequent request.

sample json

[
{
“user”: {
"id": “1100000000”,
“firstName”: “aaaa”,
“lastName”: “nbb”
},
“Summary”: {
“item”:one,
“itemdata”: 1,
“itemdataagain”: 0,
“event”: {
“avaiable”: {
“times”: [],
“ratio”: 0
},

“busy”: {
“times”: [],
“ratio”: 0
},
“timeOff”: {
“times”: [],
“ratio”: 0
}
},
"status": “approved”,

“verifed”: true
}
},
{
“user”: {
"id": “220000000”,
“firstName”: “ccc”,
“lastName”: “ddd”
},
“Summary”: {
“item”:one,
“itemdata”: 1,
“itemdataagain”: 0,
“eventOverlap”: {
“shift”: {
“times”: [],
“ratio”: 0
},
“available”: {
“times”: [],
“ratio”: 0
},

},
"status": “approved”,

“verifed”: true
}

}

]