> 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/004__mark_all_notifications_as_read_as_company.md).

# Mark All Notifications As Read (Company)

GraphQL endpoint: `/company`

Marks every unread notification of the calling company as read.

## Query

```graphql
mutation {
  markAllNotificationsAsRead {
    status
  }
}

```

## Variables

```json
{}
```

## Response

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