Can I make a custom action lookup data from an API and display it on the page when it loads?
For simplicity sake, let’s say I have an api that displays the current status of fire danger:
https://mydomain.com/app/firedanger?zipcode=12345
[
{
“firedanger”: “No warnings for now”
}
]
When you open the page, I want it to look up the current fire danger and display it to the user. The
When I do this simple test, it does not give me the option to show that data.