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

# notification

> View and update notification preferences.

Notification preferences control which emails you receive — daily digests, deal updates, follow-up reminders, and commitment reminders. Configure them per workspace.

## moss notification show

Show your current notification preferences for the active workspace.

```bash theme={null}
moss notification show
```

```bash theme={null}
moss notification show --json
```

```json theme={null}
{
  "data": {
    "id": "np_abc123",
    "daily_digest_enabled": true,
    "digest_time_utc": "09:00",
    "created_at": "2026-02-01T00:00:00Z",
    "updated_at": "2026-02-08T12:00:00Z"
  }
}
```

## moss notification update

Update notification preferences.

```bash theme={null}
moss notification update --daily-digest true --followup-reminders true
```

| Option                          | Required | Description                                                     |
| ------------------------------- | -------- | --------------------------------------------------------------- |
| `--daily-digest <bool>`         | No       | Enable or disable the daily digest email (`true` or `false`)    |
| `--deal-updates <bool>`         | No       | Enable or disable deal update notifications (`true` or `false`) |
| `--followup-reminders <bool>`   | No       | Enable or disable follow-up reminders (`true` or `false`)       |
| `--commitment-reminders <bool>` | No       | Enable or disable commitment reminders (`true` or `false`)      |
