# Configuring notifications

Looking for the latest Prefect 2 release? Prefect 2 and Prefect Cloud 2 have been released for General Availability. See https://docs.prefect.io/ for details.

Sending notifications based on events in Prefect is a common pattern. Types of notifications generally include functionality such as posting state of runs to Slack, sending a text message on failure, etc. There are many places in Prefect to hook in notification systems and this idiom will go over three possibilities.

# Downstream tasks

Adding tasks to your flow that respond to upstream events is one way of sending notifications. These tasks can be built in any way you would like and the Prefect task library even ships with a few notification tasks! Below is an example of using the SlackTask to send a notification to Slack.

Slack Webhook URL

This code below makes use of a Slack Webhook URL as a Prefect Secret. For more information on using Prefect Secrets visit the concept documentation.

In this example the SlackTask notification will execute every time the upstream task is successful. To enable a different behavior where this task runs due to different upstream task states attach a trigger to the task. For example, you could execute this task in certain situations such as upstream failures using an any_failed trigger.

# State handlers

Another common pattern for sending notifications is through state handlers. State handlers are a way of reacting to specific state changes on a task and Prefect ships with a few state handlers for working with different services. Outside of those default handlers it is straightforward to make completely custom handlers! State handlers can be set on individual tasks and on entire flows. This means that you can receive notifications for both task state changes as well as state changes for the flow. For more information on this take a look at the relevant concept documentation.

# Cloud hooks Cloud

Users of Prefect Cloud have access to something called Cloud Hooks which is a way of configuring notifications based on state changes without having to write any code for the tasks or flow itself. Cloud Hooks are the only guaranteed way of getting notifications because they have no reliance on your code and are managed entirely on the Prefect Cloud side. For more information on Cloud Hooks visit the documentation.