Skip to content
This repository was archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
48 lines (36 loc) · 1.09 KB

File metadata and controls

48 lines (36 loc) · 1.09 KB

Check If Room Name Exists

{% hint style="info" %} This method is planned to be removed by 7.0.0. Use the /rooms.roomNameExists endpoint instead. {% endhint %}

Check if a room name exists in a workspace.

Name Requires Auth
roomNameExists Yes

Payload Parameters

Argument Example Required Description
roomName try Required The room name to be searched for.

Example Call

{
    "msg": "method",
    "method": "roomNameExists",
    "id": "2",
    "params": [
                 "try"
    ]
}

Example Response

Success

{
    "msg": "result",
    "id": "2",
    "result": false
}

{% hint style="info" %} The result field returns a boolean to specify if the room exists in the workspace. {% endhint %}