Hello Mohomed,
Create onlineMeeting
Graph API request payload has lobbyBypassSettings.
It includes scope
property, which is of type lobbyBypassScope
. This specifies the types of participants that are automatically admitted into a meeting, bypassing the lobby.
you can set scope value as 'everyone' as below code. It will admit everyone into the meeting. possible values can be found on this link.
POST https://graph.microsoft.com/v1.0/me/onlineMeetings
Content-Type: application/json
{
"startDateTime":"2019-07-12T14:30:34.2444915-07:00",
"endDateTime":"2019-07-12T15:00:34.2464912-07:00",
"subject":"User Token Meeting",
"lobbyBypassSettings":{
"scope": "everyone",
"isDialInBypassEnabled": false,
}
}
If the reply is helpful, please click "Accept Answer" and kindly upvote it. If you have additional questions about this answer, please click "Comment".