---
title: "Mark Channel as Read"
slug: "mark-channel-as-read"
updated: 2026-06-08T12:46:40Z
published: 2026-06-08T12:46:40Z
---

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

# Mark Channel as Read

Post/api/v1/subscriptions.read

### Changelog

| Version | Description |
| --- | --- |
| 3.11.0 | `roomId` can be used as argument instead of `rid`. |
| 0.61.0 | Added |

Header parametersX-Auth-TokenstringRequired

The `authToken` of the authenticated user.

ExampleRScctEHSmLGZGywfIhWyRpyofhKOiMoUIpimhvheU3f
X-User-IdstringRequired

The `userId` of the authenticated user.

ExamplerbAXPnMktTFbNpwtJ

Body parameters<select class='api-response-data' aria-label='Media type'><option value='7734d8c1-1452-48ee-8ddf-661f4ca39b3a'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='f5a29343-ed08-48ea-9504-cd5fe8529fea'>RoomId</option>
<option value='b0480b3a-b953-420a-aaeb-20e1aff20489'>Rid</option>
</select>RoomId

```json
{
  "roomId": "L6su9mxwdDkvdSaT9hvzu8z6mHFigiXy6Y"
}
```

Rid

```json
{
  "rid": "L6su9mxwdDkvdSaT9hvzu8z6mHFigiXy6Y"
}
```

AnyOfobjectobjectroomIdstring    Required

The room ID.

ExampleL6su9mxwdDkvdSaT9hvzu8z6mHFigiXy6Y
readThreadsboolean    

objectobjectridstring    Required

The room ID.

ExampleL6su9mxwdDkvdSaT9hvzu8z6mHFigiXy6Y
readThreadsboolean    

Responses200

OK

<select class='api-response-data' aria-label='Media type'><option value='5a4b1833-5477-4939-a260-0df5b9f0597f'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='4dccc28b-f376-4776-a86c-52fcae0edca5'>Success</option>
</select>Success

```json
{
  "success": true
}
```

object  successboolean    

400

Bad Request

<select class='api-response-data' aria-label='Media type'><option value='f66ce570-6bbb-46cf-ad3a-de2f12d59f7b'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='b996e6b1-171c-42bf-88ce-e881ba4c66f0'>Invalid Parameter</option>
</select>Invalid Parameter

```json
{
  "success": false,
  "error": "must have required property 'rid'\n must have required property 'roomId'\n must match a schema in anyOf [invalid-params]",
  "errorType": "invalid-params"
}
```

object  successboolean    
errorstring    
errorTypestring    

401

Unauthorized

<select class='api-response-data' aria-label='Media type'><option value='f00e2beb-8e72-490a-b768-fad499388c19'>application/json</option>
</select><select class='select-example' aria-label='Media type'><option value='76865e5e-4df0-4cdf-8202-603dde45990d'>Authorization Error</option>
</select>Authorization Error

```json
{
  "status": "error",
  "message": "You must be logged in to do this."
}
```

object  statusstring    
messagestring
