---
title: "Open Rooms (Realtime)"
slug: "open-rooms-realtime"
updated: 2026-05-14T21:47:26Z
published: 2026-05-14T21:47:26Z
---

> ## 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.

# Open Rooms (Realtime)

![](https://cdn.us.document360.io/27ca1fd4-36d7-4cde-b4eb-97fc1652954c/Images/Documentation/Deprecated.svg)

When a room is opened, it becomes visible in the channel list on the sidebar, and the "open" property in the user's subscription for that room is set to `true`.

| Method | Requires Auth |
| --- | --- |
| `openRoom` | Yes |

## Payload parameters

| Argument | Example | Required | Description |
| --- | --- | --- | --- |
| `roomId` | `64a1f373376181965ab77f54` | Required | The room ID. |

## Example call

```json
{
    "msg": "method",
    "method": "openRoom",
    "id": "19",
    "params": [
        "64a1f540376181965ab77f5b"
    ]
}
```

## Example response

```json
{
    "msg": "result",
    "id": "19",
    "result": 1
}
```
