Hi everyone,
I’m having trouble running my API. I’m getting the error:
“Please use a numerically indexed array.”
I’m calling an API/Xano endpoint, and this is the JSON output I’m receiving from my backend. It looks like a standard array of objects to me, but WeWeb doesn’t seem to like it.
[
{
“id”: “a95c32d4-0a0b-4028-8bec-a85a1b349c53”,
“client_id”: “763545e5-70bb-4756-92be-0d06821b1f2c”,
“session_status”: “scheduled”,
“sequence_number”: 1
// … other properties
},
{
“id”: “decc43b9-e7a7-4aec-b4b6-3a2e991f6beb”,
“client_id”: “763545e5-70bb-4756-92be-0d06821b1f2c”,
“session_status”: “scheduled”,
“sequence_number”: 2
// … other properties
}
]
Could someone please point me in the right direction?
- Is there an issue with the structure of my data that I’m missing? Or is it possible instead of using UUID to used my seq_number?
Any help would be greatly appreciated!
Thanks.