lobbyBypassSettings resource type
Namespace: microsoft.graph
Important
APIs under the /beta
version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.
Specifies which participants can bypass the meeting lobby.
Properties
Property | Type | Description |
---|---|---|
scope | lobbyBypassScope | Specifies the type of participants that are automatically admitted into a meeting, bypassing the lobby. Optional. |
isDialInBypassEnabled | Boolean | Specifies whether or not to always let dial-in callers bypass the lobby. Optional. |
lobbyBypassScope values
The following table lists the members of an evolvable enumeration. You must use the Prefer: include-unknown-enum-members
request header to get the following values in this evolvable enum: invited
, organizationExcludingGuests
.
Value | Description |
---|---|
organizer | Only the organizer is admitted into the meeting and bypassing the lobby. All other participants are placed in the meeting lobby. |
organization | Only the participants from the same company and guests are admitted into the meeting and bypassing the lobby. All other participants are placed in the meeting lobby. |
organizationAndFederated | Only the participants from the same company or trusted organization and guests are admitted into the meeting and bypassing the lobby. All other participants are placed in the meeting lobby. |
everyone | Everyone is admitted into the meeting. No participants are placed in the meeting lobby. |
invited | Only people the organizer invites are admitted into the meeting and bypassing the lobby. All other participants are placed in the meeting lobby. |
organizationExcludingGuests | Only the participants from the same company are admitted into the meeting and bypassing the lobby. All other participants are placed in the meeting lobby. |
unknownFutureValue | Evolvable enumeration sentinel value. Do not use. |
JSON representation
The following JSON representation shows the resource type.
{
"scope": "organizer | organization | organizationAndFederated | everyone | unknownFutureValue",
"isDialInBypassEnabled": "Boolean",
}