RoomMember

A session's participation in a room.
View as Markdown

A RoomMember represents a Session’s membership in one Room. Its uuid matches the corresponding Session.session_uuid.

When to use

Use Room members to add or remove individual participants and control their mute state and volume.

Methods

Use the room.member.voice_activity_changed webhook to receive voice-activity transitions. These events are emitted only when the Room was created with voice_activity_events: true.

Choose the initial mute state

If a member must join muted, send "muted": true. If you omit muted or set it to false, the member joins unmuted.

Resource representation

The RoomMember resource
1{
2 "muted": true,
3 "uuid": "string"
4}

Properties

mutedbooleanRequired
Whether the member is currently muted in the room.
uuidstringRequired
Session UUID of the member.