Urgent Support Needed With Respect To Microsoft Teams API

Treasure Khumalo 0 Reputation points
2025-02-17T11:47:37.79+00:00

Issue Description:

·                     We at Regenesys, use the Microsoft Teams API to conduct live stream sessions between a teacher and students within our own systems.

·                     A Relationship Manager organises and schedules a class.

·                     He/she then opens the meet settings popup.

  • This is to change the security option: “Who can bypass the lobby?” to “Everyone”, which allowed students to seamlessly join the class.
Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
10,895 questions
Microsoft Graph
Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
13,330 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Rajat Vashistha-MSFT 1,320 Reputation points Microsoft External Staff
    2025-02-17T15:35:10.95+00:00

    Hi Treasure Khumalo,

    Thanks for reaching out to Microsoft!

    If your issue is related to a specific online meeting, you can update the meeting details using the Graph API. Additionally, you can add "isDialInBypassEnabled": true if you want phone users to bypass the lobby. Please find the relevant API documentation Update onlineMeeting

    PATCH https://graph.microsoft.com/v1.0/me/onlineMeetings/{meetingId}
    Content-Type: application/json
    Authorization: Bearer {access_token}
    
    {
        "lobbyBypassSettings": {
            "scope": "everyone"
        }
    }
    

    For changes to the global policy, you can log in to the Teams admin portal at admin.teams.microsoft.com, navigate to Meetings > Meeting Policies, and update the meeting join & lobby settings.User's image

    Hope this helps.

    If the answer is helpful, please click Accept Answer and kindly upvote. If you have any further questions about this answer, please click Comment.


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.