I have below JSON response coming from API, in which 104 and 2 are dynamically changing and I have these values already set in environmental varibales, e.g. {location_id} = 2, {account_id} = 104 Can anyone help on how to parse JSON and get the location object based on environment variable value for location id in postman tests section
{
"104": {
"2": [
{
"FirstName": "John",
"LastName": "McClain",
"Phone": "1234567890"
}
],
"3": [
{
"FirstName": "Rita",
"LastName": "Maria",
"Phone": "3092432345"
}
]
}
}