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.