Bypass the lobby and start the meeting

Dinesh Kumar Yadav 20 Reputation points
2024-10-10T09:14:12.4933333+00:00

I've created an event on a calendar using Calendar API which in turn in the response, it will give me the link to a Microsoft Team meeting link. My problem right now is none of the attendees can start the meeting. Is there's a way programatically either when I'm creating the event or updating the online meeting, to enable the attendees to bypass the lobby and start the meeting.

Outlook | Windows | Classic Outlook for Windows | For business
Microsoft Security | Microsoft Graph
Microsoft Teams | Microsoft Teams for business | Other
0 comments No comments
{count} votes

Accepted answer
  1. Hitesh Pachipulusu - MSFT 3,620 Reputation points Microsoft External Staff
    2024-10-10T10:24:59.9566667+00:00

    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.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.