onlineParticipants
This event is emitted multiple times during the meeting. It contains an array with all the participants in the meeting.
frame.on("onlineParticipants", function(onlineParticipants) {
});
Properties
The onlineParticipants array of objects, each object contains the following properties:
| Property | Description | Type |
|---|---|---|
| _id | participantSessionId | string |
| name | name of the user | string |
| sharingAudio | is user currently sharing microphone | boolean |
| sharingVideo | is user currently sharing camera | boolean |
| sharingScreen | is user currently sharing screen | boolean |
| disabledAudio | has admin disabled audio of the user | boolean |
| disabledScreenSharing | has admin disabled screen sharing | boolean |
| disabledVideo | had admin disabled camera | boolean |
| isAdmin | is the user admin | boolean |
| meetingSessionId | meetingSessionId | string |
| roomId | roomId | string |