I'm using "Invoke HTTP Trigger" action in my flow. Sometimes, this action returns JSON response without some keys.
Could someone help on how to check if keys like locationUri, locationType exist in the JSON response.
Condition contains(outputs('Invoke_an_HTTP_request'),'locationUri') did not help.
JSON Response
"location": {
"displayName": "",
"locationUri": "",
"locationType": "conferenceRoom",
"uniqueId": "",
"uniqueIdType": "directory",
"address": {
"street": "",
"city": "",
"state": "",
"countryOrRegion": "",
"postalCode": ""
},
"coordinates": {}
},
"locations": [
{
"displayName": "",
"locationUri": "",
"locationType": "conferenceRoom",
"uniqueId": "",
"uniqueIdType": "directory",
"address": {
"street": "",
"city": "",
"state": "",
"countryOrRegion": "",
"postalCode": ""
},
"coordinates": {}
}
],