For the complete documentation index, see llms.txt. This page is also available as Markdown.

waitingUsersJoined

Emitted when users are waiting in the lobby to join the room.

Sample payload

{
  "type": "waitingUsersJoined",
  "data": {
    "users": [
      {
        "id": "2775f882-845e-4416-82c9-04cc25669c0b",
        "name": "John Smith",
        ........................
      },
      {
        "id": "64221470-c360-47ad-961e-ecbda8eeaf7f",
        "name": "Cillian Newton",
        ........................
      },
      ..........................
    ]
  }
}

Sample subscription code

Last updated