Control
The control module contains the base functionality for the conference including information like the participant list, roles and hand raise.
Commands
Join
Must be the first message to be sent when the websocket connection is established.
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "join" |
display_name | string | yes | String to be displayed as the user's display name in the room |
Example
{
"action": "join",
"display_name": "Test"
}
EnterRoom
Can only be sent while in the waiting room and after being accepted by a moderator.
See InWaitingRoom
Fields
Field | Type | Required | Description |
---|---|---|---|
action | enum | yes | Must be "enter_room" |
Example
{
"action": "enter_room"
}
Raise Hand
Notify other participants that a participant's hand is raised.