How to catch a 400 error from API connector?

So, I found a solution to this in case anyone else is encountering the same thing. Add the same API call as a second API call, this time setting the Data Type to “Text”. This will return an object resulting in the string “[object Object]” whatever the result- whether it’s a properly formatted result or the 400 error page. So now you can check for a condition where API 2’s result is [object Object] and API 1’s result is empty, meaning the 400 error happened.

6 Likes