Hello Dinesh Kumar Yadav,
Thank you for reaching out to Microsoft Support!
Yes, if you are creating online meeting, you can configure the meeting settings programmatically to allow attendees to bypass the lobby and start the meeting. When creating or updating the online meeting using the Microsoft Graph API, you can set the lobbyBypassSettings
to allow everyone to bypass the lobby.
Here's an example of how you can do this:
{
"startDateTime": "2024-10-10T15:00:00Z",
"endDateTime": "2024-10-10T16:00:00Z",
"subject": "Team Meeting",
"isEntryExitAnnounced": false,
"lobbyBypassSettings": {
"scope": "everyone"
}
}
In this example, the lobbyBypassSettings
with "scope": "everyone"
ensures that all participants can bypass the lobby and join the meeting directly. Please refer to documentation.
Hope this helps.
If the answer is helpful, please click Accept Answer and kindly upvote it. If you have any further questions about this answer, please click Comment.