I am designing a logic app that calls an API and according to the API's response moves forward. But for some reason when the API call fails (i.e. it doesn't return 200 status code), the HTTP section of the logic app fails and does move forward at all. For example:
In the above app if the URI returns anything besides 200 status code, the logic app fails and doesn't move forward. But I want if the app doesn't return 200 status, it should still move forwards and check the condition and send an email.
How can I achieve that?