I created a HTTP
It's Body property returns a JSON hash:
{
"data": [
{
"id": 123456,
"fullname": "Last, First",
"code": null,
"status": 1,
"self": "https://api.xxx.com/rest/v1.0/xxx/123456",
"limits": null,
"accumulated": null,
"custom_data_field": [
{
"id": 4,
"label": null,
"value": null
},
{
"id": 5,
"label": null,
"value": null
},
{
"id": 6,
"label": null,
"value": null
}
],
"access_groups": []
}
],
"meta": {
"previous": null,
"total": 1,
"per_page": 50,
"next": "https://api.xxx.com/rest/v1.0/xxx?page%5Bnumber%5D=2"
}
}
I would like to loop each items in the data element.
What is the next step? Initialize variable? Append to an array variable? In either case, what's the syntax to get each element's (e.g. data.fullname) value?

