> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/api-reference/001_user/013_notifications/004__mark_notification_as_read.md).

# Mark Notification As Read

GraphQL endpoint: `/user`

Marks a single notification belonging to the caller as read. Notifications owned by someone else are left untouched.

## Query

```graphql
mutation ($id: ID!) {
  markNotificationAsRead(id: $id) {
    status
  }
}

```

## Variables

```json
{
  "id": "00000000-0000-4000-8000-000000000001"
}
```

## Response

```json
{
  "data": {
    "markNotificationAsRead": {
      "status": "OK"
    }
  }
}
```
