Hi team,
I’m trying to fetch user information with external API. The example response was like :
{
"list": [
{
"customer": {
"id":"123",
"first_name": "Darth",
"last_name": "Vader",
"email":"darthvader@deathstar.com"
}
}
]
}
I can see the example response in Data Access but since the first layer is a list, I can’t mapping that in Object Mapping. Could you suggest how should I mapping these data? Thank you. 🙏

