Hi there,
I'm having trouble wrapping my head around error handling. I'm calling an external API and sometimes it might through some error. I want to be notified about it immediatle via email.
I made the following logic:
The problem is, the If/else conditional won't execute since the function stack stops after the API request returns an error, so Xano won't send an email about it with Sendgrid (which is the Else part of the conditional).
What am I missing? How shoud I structure this logic?