Hello,
I’ve built a custom plugin that calls an API which returns multiple elements. I’m looking for a way to populate a repeating group with this list of elements.
Been reading on this forum now for quite a while. I believe I need to create a list of Things to display the results in a repeating group. Thing is, I can’t find how to create multiple Things based on a single API call? For simplicity, say my plugin returns the following:
{“animals”:[
{“type”:“horse”,“age”:“10”},
{“type”:“cat”,“age”:“12”}
]}
How can I display both these entries in my app?