I don’t know if this is possible, but I am building an app that will receive webhooks back from stripe. I will like to trigger a front-end workflow when these webhooks come in. These front-end workflows are mostly Element based, which of course you can’t trigger from back end.
Example: When a received webhook payment status = Failed; Display “Error Popup”
When a received webhook payment status = Success; Display “Success Popup”
To achieve this I usually change a field in the user’s thing and in the front end have a condition that runs every time this current user’s thing changes, that triggers the front end’s wf
@miracle@NigelG@djtochner What do you think about this approach, from @jamesdevonport where you call your own API publicly from frontend? Seems clever – is it more robust or less WU than the “user flag” method described in this thread?