# Show Toast

## Overview

Use a toast message to confirm a user's action and provide feedback. Toasts are overlaid notifications that stack horizontally and can be dismissed by the user.

Use a toast for one of these types of responses:

* **`Info:`** inform users that their actions have triggered a process, and they may have to wait for completion before proceeding.
* **`Success:`** Confirm a successful or completed action.
* **`Warning:`** Warning toasts inform users of potential issues related to their actions and guide them to prevent future problems.
* **`Error:`** Communicate an issue preventing a user from completing their current action and can be fixed within their current flow.

In general, use a toast interaction in response to user action. To decide whether you should use Toasts or another type of messaging, jump to Toasts vs. Alert Modal vs. Confirm interaction.

<figure><img src="/files/ePzre3H4UQhwXv6NzmZN" alt=""><figcaption></figcaption></figure>

## Specifications

<table><thead><tr><th width="214">Property</th><th>Description</th></tr></thead><tbody><tr><td>Title</td><td>Text that will be displayed in the header.</td></tr><tr><td>Message</td><td>Main content message for your alert box.</td></tr><tr><td>Variant</td><td>Appearance of the alert modal. With or without a header.</td></tr><tr><td>Mode</td><td>Determines how persistent the toast is. Choose between <code>Dismissible</code>, <code>Pester</code> and <code>Sticky</code>.</td></tr></tbody></table>

### Mode definition&#x20;

* **Dismissible**: The toast message is dismissed automatically after 5 seconds. Users can close it.&#x20;
* **Pester**: The toast message is dismissed automatically after 5 seconds. Users can't close it.&#x20;
* **Sticky**:  The toast message is displayed until dismissed, no duration applies. This forces the user to acknowledge info without blocking other interactions on the page. &#x20;


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.avonnicomponents.com/flow/component-builder/interactions-panel/show-toast.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
