Why can't my anonymous users bypass the lobby in an online Microsoft Teams meeting?

Briant Diehl 31 Reputation points
2021-03-13T00:21:42.91+00:00

When I create online meetings through the graph api, I want to enable my anonymous users to be able to bypass the lobby and start the meeting without having the organizer present.

Following the documentation (https://learn.microsoft.com/en-us/graph/api/resources/onlinemeeting), you can see that there are properties that specify how to bypass the lobby and enter the meeting, and I have those properties in the body of my request like this

RequestType: POST
RequestUrl: https://graph.microsoft.com/v1.0/users/{userId}/onlineMeetings

   {  
       "allowedPresenters": "everyone",  
       "lobbyBypassSettings": {  
           "isDialInBypassEnabled": true,  
           "scope": "everyone",  
       },  
       "startDateTime": "some start time",  
       "subject": "some subject"  
   }  

However, my users are still unable to enter a meeting without the organizer.
Anonymous users, upon clicking the online meeting link and joining the meeting are met with this message: We've let people in the meeting know you're waiting.

Microsoft Graph Cloud Communications API
Microsoft Graph Cloud Communications API
A Microsoft API that adds a new dimension to how your apps and services interact with users through various communications-related features, such as calling and online meetings.
126 questions
Microsoft Graph Teamwork API
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
1,895 questions
{count} votes

Accepted answer
  1. Jagadeesh-MSFT 331 Reputation points
    2021-03-22T07:03:59.927+00:00

    Posting the Answer for better knowledge

    Copying from comments

    Hi @Briant Diehl , Could you please check this document, it will explain allowing anonymous users to join meetings.


1 additional answer

Sort by: Most helpful
  1. Kamil Zdanikowski 26 Reputation points
    2021-08-21T22:53:38.693+00:00

    @Briant Diehl did it work for you?

    I'm trying to achieve the same thing and even after setting lobbyBypassSettings' scope to "everyone" and allowing anonymous users to join meetings via teams admin center they still cannot join when organizer is not present.

    It happens even with the invited users. They cannot bypass lobby unless organizer is present.