> 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/waitingusersleft.md).

# waitingUsersLeft

Emitted when users waiting in the lobby left and are no longer in the room.

#### Sample payload

```json
{
  "type": "waitingUsersLeft",
  "data": {
    "userIds": [
       "2775f882-845e-4416-82c9-04cc25669c0b",
       "64221470-c360-47ad-961e-ecbda8eeaf7f"
    ]
  }
}
```

#### Sample subscription code

```javascript
sambaFrame.on('waitingUsersLeft', (event) => {
  const data = event.data;
  console.log(data.userIds, 'left the lobby');  
});
```
