---
title: "Get Room Name by ID (Realtime)"
slug: "get-room-name-by-id-realtime"
updated: 2026-05-14T21:44:20Z
published: 2026-05-14T21:44:20Z
---

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

# Get Room Name by ID (Realtime)

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

Get room name by room ID.

| Method | Requires Auth | Permission |
| --- | --- | --- |
| `getRoomNameById` | Yes | `view-c-room` |

## Payload parameters

| Argument | Example | Required | Description |
| --- | --- | --- | --- |
| `rid` | `siyr2oWQJBjQjhLwru` | Required | The room ID. |

## Example call

```json
{
    "msg": "method",
    "method": "getRoomNameById",
    "id": "2",
    "params":[
        "siyr2oWQJBjQjhLwr"
    ]
}
```

## Example response

```json
{
    "msg": "result",
    "id": "2",
    "result": "try"
}
```
