> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brudcast.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Notifications

> Read your organization's notifications, what each severity means, and which page to act on for every kind of alert.

export const Screenshot = ({id, src, srcDark, alt, caption}) => {
  if (!src) {
    return <Placeholder id={id} kind="screenshot" label="Screenshot coming soon" description={alt} icon={<ImageIcon />} />;
  }
  return <figure className="brd-media" data-media-id={id}>
      <img className="brd-media-frame block dark:hidden" src={src} alt={alt} />
      <img className="brd-media-frame hidden dark:block" src={srcDark || src} alt={alt} />
      {caption && <figcaption className="brd-media-caption">{caption}</figcaption>}
    </figure>;
};

Notifications belong to the organization, not to you. They're shared by everyone in it, so when
anyone marks one read or dismisses it, it's read or dismissed for the whole team. Switch organization
to see another organization's notifications.

<Screenshot id="ss-organization-notifications-hero" alt="The notification panel open under the bell, with All and Unread tabs, a Needs attention group and a Today group" />

## The notification panel

* **The bell** in the header shows a dot when something is unread, and a red dot when at least one
  unread notification is critical.
* **All** and **Unread** tabs filter the list. **Mark all as read** (the double check mark) appears
  when anything is unread.
* Notifications are grouped as **Needs attention** (unread warnings and critical ones), **Today**,
  **Yesterday** and **Earlier**. Select **Show more** for older ones.
* Each one has a title, a short explanation and usually a link to the page where you can act on it.
  Opening that link also marks it read. Hover for **Mark as read** and **Dismiss**.

## Severities

| Severity     | What it means                                         |
| ------------ | ----------------------------------------------------- |
| **Info**     | Something finished or changed. Nothing to do          |
| **Warning**  | Needs attention soon                                  |
| **Critical** | Something has stopped working, or will unless you act |

New warning and critical notifications also pop up briefly in the corner of the screen while you're
in the dashboard.

## What you'll be told, and where to act

| What it tells you                                                                      | Where to act                                                           |
| -------------------------------------------------------------------------------------- | ---------------------------------------------------------------------- |
| A sending domain's bounce or complaint rate is too high, or has recovered              | [Reputation and suspension](/deliverability/reputation-and-suspension) |
| Your organization's sending is under review, suspended or stopped                      | [Reputation and suspension](/deliverability/reputation-and-suspension) |
| A contact import has finished or failed                                                | [Import contacts](/contacts/importing)                                 |
| Brudcast has reviewed one of your sender identities                                    | [Channels overview](/channels/overview)                                |
| A carrier has decided on an SMS sender ID for a country                                | [Sender IDs](/channels/sms/sender-ids)                                 |
| Your wallet balance is low, an automatic top-up failed, or credits are about to expire | [Credits and wallet](/billing/credits-and-wallet)                      |
| A signup form's confirmation emails can't be sent                                      | [Forms overview](/forms/overview)                                      |
| A migration from another provider has finished                                         | [Run a migration](/migrations/run-a-migration)                         |
| A reviewer has decided on one of your compliance documents                             | [SMS overview](/channels/sms/overview)                                 |
| A push application's Firebase credential was rejected and it has stopped sending       | [Connect Firebase](/channels/push/connect-firebase)                    |

When the same thing happens again, such as a second low-balance warning, Brudcast updates the
existing notification instead of adding another.

<Note>
  Security emails about your own account, such as a new sign-in or a password change, go to your
  email address and never appear here. See [Account security](/account/security).
</Note>

## Related

<Columns cols={2}>
  <Card title="Organization settings" icon="building" href="/organization/organization-settings">
    Your organization's name, brand and business address.
  </Card>

  <Card title="Members and roles" icon="users" href="/organization/members-and-roles">
    Who else sees these notifications.
  </Card>
</Columns>
