Help with API response and value identification

Hi guys,
I have a server action API call that returns something like the following

{
  "$total": 2,
  "$page": 1,
  "$items": 1,
  "$resources": [
    {
      "$key": 1,
      "$title": "Test",
      "myid": 1,
      "mytext": "Test",
      "myreference": "123"
    }
    {
      "$key": 2,
      "$title": "Test Again",
      "myid": 2,
      "mytext": "Testing 234",
      "myreference": "234"
    }
  ]
}

I have a repeat on $resources in a table.
the myid, mytext and myreference, dependant on the endpoint may be completely different titles, but I will always want to bind client side what is returned in those 3 property paths (values 3-5)

Any ideas would be appreciated.
Thanks

Community Page
Last updated: