onEntryRequested

Called when a participant requests to enter a meeting that requires entry permission.

Use respondEntry to accept or deny the request.

Code Example:


override fun onEntryRequested(id: String, name: String) {
    // Show UI to accept/deny entry
    meeting.respondEntry(id, "allowed")
}

Parameters

id

the unique request ID

name

the display name of the participant requesting entry

See also