Complete the sentence to explain what happens when a Zap encounters an error.
When a Zap encounters an error, it will [1] the task and stop running.
When a Zap encounters an error, it fails the task and stops running that Zap instance.
Complete the sentence to describe how you can handle errors in a Zap.
To handle errors, you can add a [1] step that runs only if the previous step fails.
An error handler step allows the Zap to perform specific actions when a previous step fails.
Fix the error in the explanation about Zap error notifications.
Zapier sends an email notification to the [1] user when a Zap fails.Zapier notifies the Zap owner by email when their Zap fails, so they can fix the issue.
Fill both blanks to complete the sentence about retrying failed Zap tasks.
Zapier will automatically [1] failed tasks up to [2] times before stopping.
Zapier retries failed tasks automatically up to 5 times before stopping the Zap.
Fill all three blanks to complete the code snippet for error handling in a Zap.
if step_status == '[1]': send_notification(to='[2]', message='Zap failed at [3]')
This code checks if a step failed, then sends a notification email to the Zap owner about the failure at step 3.