GET parameters allow you to control the web client functionality at the loading stage. This includes features such as automatic filling of authorization fields, automatically joining a conference on startup, as well as restricting user access to various application components, for example hiding the chat or access to audio channel settings.
| Parameter | Description | Type |
|---|---|---|
| conference | Fills in the “Conference number” field when the web client starts | String |
| displayName | Fills in the “Display name” field when the web client starts | String |
| pin | Encrypted PIN code for joining a closed conference | String |
| call | Automatically joins the conference when the web client starts | Yes/No |
| lock | Locks the conference number field from editing | Yes/No |
| nocontrols | Allows restricting user access to various application components | String |
| inputchannels | List of incoming audio channel IDs, separated by commas | String |
| outputchannels | List of outgoing audio channel IDs, separated by commas | String |
| number | Login name for authorization | String |
| password | Password for authorization, encrypted: https://www.base64encode.org/ | base64 |
| license | Type of license used for the call | AUDIO AUDIOPLUSPRESENTATION |
| autoShareSecondCam | Automatically starts second camera presentation when the call begins | Yes/No |
| isEnabledRemoteControlCamera | Allows the conference moderator to enable/disable the user’s camera | Yes/No |
| isEnabledRemoteControlMicrophone | Allows the conference moderator to enable/disable the user’s microphone | Yes/No |
The nocontrols parameter has several valid values that define which application components should be hidden. Values are specified as a comma-separated list.
| Parameter | Description |
|---|---|
| chat | Chat and conference participant list |
| channels | Audio channel settings |
| clipboard | Button for copying the conference link |
| fullscreen | Fullscreen mode icon |
| hangup | End call button |
| mic | Microphone on/off button |
| logo | Logo |
| callinfo | Call information |
| recording | Conference recording button |
| participantrequestwordindicator | Request-to-speak indicator |
| offerdesktop | Skips the step offering to download the desktop version of the application |
| offermobile | Skips the step offering to download the mobile version of the application |
| statistics | Bitrate statistics of the current call |
| usermedia | User webcam video preview window |
| usermedia | User webcam video preview window |
| screenshare | Screen sharing |
| sharesecondcam | Second camera presentation |
| dtmfdialpad | DTMF dial pad |
| sharefile | File presentation |
| avatar | Avatar usage |
| conferenceparticipants | Participant list |
| navigation | Navigation panel (left side) |
| pip | PiP button on incoming video |
| lang | Interface language switcher |
| secondcampreview | Hides the second camera preview |
| secondtabwarning | Disables the warning that the application is already open in another tab |
| all | Hides all of the components listed above |
Examples
Fill in authorization fields:
https://[host_name_or_ip]/client?conference=1000&displayName=John
Fill in authorization fields and lock the conference number:
https://[host_name_or_ip]/client?conference=1000&displayName=John&lock=true
Fill in authorization fields and automatically join the conference:
https://[host_name_or_ip]/client?conference=1000&displayName=John&call=true
Fill in authorization fields and join a closed conference:
https://[host_name_or_ip]/client?conference=1000&displayName=John&pin=YnRvYQ==&call=true
Skip the step offering to download the desktop version of the application:
https://[host_name_or_ip]/client?conference=1000&nocontrols=offerdesktop
Skip the step offering to download the desktop version and hide the chat during the conference:
https://[host_name_or_ip]/client?conference=1000&nocontrols=offerdesktop,chat
Hide the chat and the camera and microphone on/off buttons:
https://[host_name_or_ip]/client?conference=1000&nocontrols=chat,mic,videocam
Skip the step offering to download the desktop version and hide all described components:
https://[host_name_or_ip]/client?conference=1000&nocontrols=all
Force specific audio channels for the call:
https://[host_name_or_ip]/client?conference=1000&inputchannels=0,1&outputchannels=0,2