Continue workflow using branched logic if the step returns an error
What is error handling?
Error handling lets you decide what happens when a step fails in your workflow. You can either terminate the entire workflow when an error occurs or allow it to continue running despite the error.
If a step's output is essential for subsequent steps, choose to terminate the workflow when that step fails. If the workflow can proceed without a particular step's output, you can configure it to continue despite errors.
How to Handle Failed Steps
Select Continue instead of Terminate Workflow if the step fails
Add a conditional where the condition checks if the error from the step exists e.g. step_1.error
Add alternative steps or actions to execute when an error occurs