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

# Notification endpoints

> Read and manage workspace-level notifications and the delivery channels that route them. Configure email or webhook targets, verify them, and track unread activity across your workflows.

For more information about notification channels, see [Webhooks](/api-reference/webhooks) and [Email notifications](/api-reference/email).

| Name                                                                                             | Method   | Path                                                 |
| ------------------------------------------------------------------------------------------------ | -------- | ---------------------------------------------------- |
| [List notifications](/api-reference/api/notification/list-notifications)                         | `GET`    | `/api/v1/notifications`                              |
| [Get notification](/api-reference/api/notification/get-notification)                             | `GET`    | `/api/v1/notifications/{notification_id}`            |
| [Mark notifications read](/api-reference/api/notification/mark-notifications-read)               | `POST`   | `/api/v1/notifications/mark-read`                    |
| [Get notifications unread count](/api-reference/api/notification/get-notifications-unread-count) | `GET`    | `/api/v1/notifications/unread-count`                 |
| [List notification channels](/api-reference/api/notification/list-notification-channels)         | `GET`    | `/api/v1/notifications/channels`                     |
| [Get notification channel](/api-reference/api/notification/get-notification-channel)             | `GET`    | `/api/v1/notifications/channels/{channel_id}`        |
| [Create notification channel](/api-reference/api/notification/create-notification-channel)       | `POST`   | `/api/v1/notifications/channels`                     |
| [Update notification channel](/api-reference/api/notification/update-notification-channel)       | `PATCH`  | `/api/v1/notifications/channels/{channel_id}`        |
| [Delete notification channel](/api-reference/api/notification/delete-notification-channel)       | `DELETE` | `/api/v1/notifications/channels/{channel_id}`        |
| [Verify notification channel](/api-reference/api/notification/verify-notification-channel)       | `POST`   | `/api/v1/notifications/channels/{channel_id}/verify` |

To read and manage *workflow-scoped* notification channels, use the following endpoints:

* [List workflow notification channels](/api-reference/api/workflow/list-workflow-notification-channels)
* [Get workflow notification channel](/api-reference/api/workflow/get-workflow-notification-channel)
* [Create workflow notification channel](/api-reference/api/workflow/create-workflow-notification-channel)
* [Update workflow notification channel](/api-reference/api/workflow/update-workflow-notification-channel)
* [Delete workflow notification channel](/api-reference/api/workflow/delete-workflow-notification-channel)
* [Verify workflow notification channel](/api-reference/api/workflow/verify-workflow-notification-channel)
