participantJoined
Emitted when a new participant joins the meeting room
This event is emitted to all the existing participants when a new participant joins the meeting room.
JavaScript
meeting.on("participantJoined", function(participantInfo) {
});
Properties
participantInfo
is an object that contains the following properties:
Property | Description |
---|---|
isAdmin | indicated whether the participant is a meeting admin. Check out authenticating using auth tokens to learn more about admin users. |
meetingSessionId | meetingSessionId is unique for each meeting session |
name | name/username of the user |
roomId | ID of the current meeting room |
_id | Participant Session ID |
email of the participant if specified | |
externalUserId | externalUserId of the participant if specified |
meta | meta for the participant if specified |