I'm trying to populate a few different dropdowns from an API response. Instead of making two different calls, is it possible to create two collections if the response has two different arrays? For example:
{
itemList1: ["foo", "bar"],
itemList2: ["baz", "qux"
}
Right now, I can do ClearCollect(itemList1Options, APICall(apiCallHere).itemList1) to to assign the first array. But I can only figure out to how to save the second array to a collection by making a whole new call and using .itemList2 to extract it. How can I do this in just one call?