What’s the recommended way of handling http errors happening in actions?
Is it about the “continue on error” toggle and then adding a conditional handling of it?
What’s the recommended way of handling http errors happening in actions?
Is it about the “continue on error” toggle and then adding a conditional handling of it?
Hey @art_kuz.
The Continue on error
option should be enabled IF you don’t wan’t to execute the next steps if the data source operation returns an error. For error handling, you should leave on, so you can add more steps after this one that checks for the .error
of the request. You can even create steps that only run if .error
is present, for example.