> For the complete documentation index, see [llms.txt](https://docs.digitalsamba.com/reference/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.digitalsamba.com/reference/sdk/events/waitingusersjoined.md).

# waitingUsersJoined

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

#### Sample payload

```json
{
  "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

```javascript
sambaFrame.on('waitingUsersJoined', (event) => {
  const data = event.data;
  console.log(data.users, 'are waiting in the lobby');  
});
```
