Hello,
I am trying to build a flow that uses an API that returns the JSON below. I am able to get the response and use Parse JSON to parse it successfully, but I am having problems getting access to the collection of "resources." The JSON has a "meta" level and a "resources" level.
The JSON sample below only has one resource (a single contact) but ultimately it will have multiple resources.
Once I have parsed the JSON I want to go through and get the data from each resource and use it in the flow. When I add an Apply to Each step I get the following options:

I have used an Apply to Each to cycle through resources and also to cycle through items (which embeds it in an Apply to Each for resources). But I can never seem to get access to the actual properties of the item like the first name of a contact.
How can I setup my flow so that I have access to the fields for each item returned?
Thank you in advance!
{
"meta": {
"per_page": 1,
"total": 186,
"pages": 186,
"page": 1
},
"resources": [
{
"updated": "2021-01-06T14:38:56-0500",
"creator": "Monroe Horn",
"object_type": "contact",
"is_editable": true,
"record_type": "person",
"updater": "Monroe Horn",
"is_important": null,
"children": [],
"company_last_contacted": {
"out": {
"user_id": "5f89ccd2f92ea1782bc8c173",
"deletion_tstamp": null,
"type": "message",
"object_id": "6f13b31a-1c6d-ede3-7c2c-1ffe918fb7f5",
"tstamp": "2020-12-22T23:42:53"
},
"in": {
"user_id": "5f89ccd2f92ea1782bc8c173",
"deletion_tstamp": "2020-12-23T00:44:35.516000",
"type": "message",
"object_id": "76a33628-27f5-7275-19a2-46ce026fc988",
"tstamp": "2020-12-23T00:08:51"
}
},
"created": "2020-10-26T12:27:53-0400",
"fields": {
"parent company": [
{
"is_primary": false,
"modifier": "",
"extra_value": "5f96f909f92ea11d6dc855d5",
"value": "Goulston & Storrs",
"label": "parent company"
}
],
"first name": [
{
"is_primary": false,
"modifier": "",
"value": "Angel",
"label": "first name"
}
],
"last name": [
{
"is_primary": false,
"modifier": "",
"value": "Garcia-Manso",
"label": "last name"
}
],
"title": [
{
"is_primary": false,
"modifier": "",
"value": "PMO Director",
"label": "title"
}
],
"linkedin": [
{
"is_primary": false,
"modifier": "",
"value": "https://www.linkedin.com/in/angelgarciamanso",
"label": "linkedin"
}
],
"lead status": [
{
"is_primary": false,
"modifier": "",
"value": "Not Lead",
"label": "lead status"
}
],
"discovered gender": [
{
"is_primary": false,
"modifier": "",
"value": "Male",
"label": "discovered gender"
}
],
"phone": [
{
"is_primary": false,
"modifier": "mobile",
"value": "+1 (401) 793-1831",
"label": "phone"
}
],
"email": [
{
"is_primary": false,
"modifier": "work",
"value": "agarcia225@gmail.com",
"label": "email"
}
],
"lead type": [
{
"is_primary": false,
"modifier": "",
"value": "Colleague",
"label": "lead type"
}
]
},
"privacy": {
"read": {
"user_ids": [],
"group_ids": []
},
"edit": {
"user_ids": [],
"group_ids": []
}
},
"id": "5f96f909f92ea11d6dc855d0",
"last_contacted": {
"user_id": "5f89ccd2f92ea1782bc8c173",
"deletion_tstamp": "2020-12-23T00:44:35.516000",
"type": "message",
"object_id": "76a33628-27f5-7275-19a2-46ce026fc988",
"tstamp": "2020-12-23T00:08:51"
},
"creator_id": "5f89ccd2f92ea1782bc8c173",
"avatar_url": "https://nimbleappcdn.azureedge.net/api/avatars/5b5af0359a4d8a278407e6a7/5f96f909f92ea11d6dc855d0/person/2",
"reminder": null,
"owner_id": "5f89ccd2f92ea1782bc8c173"
}
]
}