> 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/005__mark_notifications_as_read.md).

# Mark Notifications As Read

GraphQL endpoint: `/user`

Marks the notifications with the supplied ids as read. Ids that belong to another owner are ignored.

## Query

```graphql
mutation ($ids: [ID!]!) {
  markNotificationsAsRead(ids: $ids) {
    status
  }
}

```

## Variables

```json
{
  "ids": [
    "00000000-0000-4000-8000-000000000001",
    "00000000-0000-4000-8000-000000000002"
  ]
}
```

## Response

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