Allow external users to bypass the lobby of an application-created online meeting

Nerds 21 Reputation points
2020-11-13T11:13:09.073+00:00

What I try to accomplish is to have an application to create an online meeting, which external users can participate without having someone of the organisation being present. I have been following the documentation for creating an online meeting as an application on behalf of a user: https://learn.microsoft.com/en-us/graph/api/application-post-onlinemeetings?view=graph-rest-beta&tabs=http.

I managed to create online meetings on behalf of a user, but I am unable to prevent external users from entering the lobby. I figured out that there could be two possible solutions for this:

  1. Sending extra parameters in the body for creating an online meeting:

{

    "lobbyBypassSettings": {  
         "scope": "everyone"  
     }  
 }  
  1. Creating a "Meeting Policy" in the "Microsoft Teams Admin Center", where "Let anonymous people start a meeting" is turned on and that policy is assigned as "Meeting Policy" to the user on whose behalf we may create online meetings.

Unfortunately both didn't work. My question is whether it is even possible to create an online meeting where external users can join without first being blocked by the lobby? If yes, how can I accomplish this with the "Microsoft Graph Beta" API as an application?

Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,008 questions
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.
3,251 questions
0 comments No comments
{count} votes

Accepted answer
  1. Manish-MSFT 256 Reputation points
    2020-11-16T07:16:09.473+00:00

    Hi @Nerds , No. You can't bypass the lobby since the user is outside of tenant of an organization(this could be an issue with privacy), the organizer of the meeting is responsible for adding a person to meeting or rejecting him away.


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.