Back to All

How to access nested array from API results?

Hi guys!
Do you know how to access the field description from this API response below?
{{response.total}} does return 11 but I have no idea how to get into the items array, I tried :
[FOR(i,val){response.items}[{val.name}]]

{
"response": {
"total": 11,
"total_result": 1,
"page": 1,
"count": 1,
"items": [
{
"id": 12,
"type": 1,
"name": "Toto",
}
]
}
}