Not all arrays show in Sheets with data from HTTP

When selecting variables not all arrays are pulled up.
HTTP 12 and 20 in OUTPUT gives all information Custom.field [1,2,3]
when I want to pull up these arrays in Sheets of variables only custom.field 1.

Please help, maybe they can be pulled out manually? I have tried
{{ get(20.data.custom_fields_values; “field_name”; “Телефон”).values[0].value }}



Hey there,

arrays only show the first items inside them for easier visualization. If you map that item you can use the orderindex to access the desired ones. provided the order of the array is the same every time.

Or you can use map() function to extract the specific items you need regardless of the order of the array.