So I have this simple api endpoint: myurl.com/get_all_data
It returns an array of items:
[ { "id": 1, "name": "A23", "color": "red" }, { "id": 2, "name": "A235", "color": "blue" }, { "id": 3, "name": "A238", "color": "green" } ]
I need the simplest and easiest way to load this data into a PowerApps Canvas and display it as a table there (that can be refreshed automatically on every page load).
| id | name | color |
|-----|-------|-------|
| 1 | A23 | red |
| 2 | A235 | blue |
| 3 | A238 | green |
Can someone help with what steps should I use to load this data and make it accessible to powerapps canvas and display it as a table?