Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 724 Bytes

File metadata and controls

44 lines (32 loc) · 724 Bytes

Opening Rooms

When you open a room, that room shows up on the list of channels and marks the property open to true on the user's subscription of the room.

Requirements

Logged In Permission Setting
Yes none none

Payload

  1. String - the id of the room to open

Example Call

{
    "msg": "method",
    "method": "openRoom",
    "id": "19",
    "params": [
        "roomId"
    ]
}

Example Response

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

See Also