> 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/002_company/012_notifications/003__mark_notification_as_read_as_company.md).

# Mark Notification As Read (Company)

GraphQL endpoint: `/company`

Marks one of the calling company's notifications as read. Returns OK even if the notification is already read.

## Query

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

```

## Variables

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

## Response

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