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

# Mark all notifications read

> Mark all unread notifications for the authorized member as read.

Mark all unread notifications for the authorized member as read.

Use an OAuth access token issued to `kato-raycast`. Developer keys cannot call this endpoint. See [Raycast authentication](/api-reference/raycast/overview).

Required scopes: `notifications:write`.

No request body or filters. `marked` is the number of notifications updated; zero is a successful no-op.

## Response

**200** — Returns the resource under `data`. Example IDs and values are illustrative.

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "marked": 3
    }
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl --fail-with-body --silent --show-error \
    "https://api.getkato.io/v1/raycast/notifications/read-all" \
    -H "Authorization: Bearer $KATO_RAYCAST_ACCESS_TOKEN" \
    -X POST
  ```
</RequestExample>

This request changes workspace data. A timeout does not prove that the write failed; inspect the result before retrying.


## Related topics

- [All endpoints](/api-reference/endpoints.md)
- [Mark notification read](/api-reference/raycast/notifications-read.md)
- [Mark notification unread](/api-reference/raycast/notifications-unread.md)
- [Dismiss a read notification](/api-reference/raycast/notifications-dismiss.md)
- [Get the daily brief](/api-reference/raycast/brief.md)
