How do I populate an object array into repeating containers?

This is the documentation I had been looking at prior to this post: Dynamically Repeating Containers | Feathery Docs

I’m attempting to import an object and populate it into a repeater. Currently, I can get the first object in the array to populate via the API response mapping and setting the field to entity 0 in the array.

Object:
“Contacts”: [
{
“Name”: null,
“PhoneNumber”: null,
“EmailAddress”: null,
“TextEnabled”: false
}
]

I need to map in all existing contacts to the repeater. The repeating elements are text fields, not labels, since they are editable. I assume I need to use a hidden variable, but didn’t see how to set one up as something more complex than a string, and then populate that object to the repeater.

The repeater works when adding in new contacts manually.

Hi @pstas

You can populate an object array to your fields inside a repeating container by just directly assigning the array in the textfield you have. Here’s an example

1 Like

Hey @Kenny this looks like what I need. One hang up though; How do I reference the JSON object I’m pulling in the API connector elsewhere?

For reference, here’s what I’ve tried.