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

# User Notifications Overview

> Explains the member-specific notification routes for listing, reading, and deleting alerts.

These routes manage member-specific notifications, separate from the shared church-wide notification feed returned by `/v1/notifications`.

Open the operation pages below when you want the full request details or you want to use Mintlify's `Try it` flow.

## What each route does

* [List User Notifications](/api-reference/open-api/list-user-notifications): load the member's paginated notification inbox.
* [Mark Notification As Read](/api-reference/open-api/mark-notification-as-read): update one notification to a read state.
* [Mark All Notifications As Read](/api-reference/open-api/mark-all-notifications-as-read): clear every unread badge for the current member.
* [Delete User Notification](/api-reference/open-api/delete-user-notification): remove one notification from the member's inbox.

## Typical pattern

1. Load `GET /v1/notifications/user` when the inbox screen opens.
2. Mark an item as read after the member opens it.
3. Call `PATCH /v1/notifications/read-all` for a bulk clear action.
4. Delete individual notifications only when your product experience truly removes them from the inbox.
