Forum Discussion
[teams meeting] How to change guest user role ?
- Feb 21, 2022
Guest users directly can't be made as presenters without inviting them as Guests into the organization.
Refer to documentation plan-for-teams-live-events
For a guest to present in a meeting, do the following tasks:-
Add the user as a guest to a team.
- Have the user accept the guest invitation and join the team.
Schedule the live meeting and add the guest to your event group.
Thanks,
Nivedipa
---------------------------------------------------------------------------------------
If the response is helpful, please click "Mark as Best Response" and like it. You can share your feedback via Microsoft Teams Developer Feedback link. Click here to escalate.
-
liao_ben - Could you please try to set Role = OnlineMeetingRole.Presenter for guest user and check again.
Ref Doc: https://docs.microsoft.com/en-us/graph/api/resources/meetingparticipants?view=graph-rest-1.0
- liao_benFeb 20, 2022Copper Contributor
Nivedipa-MSFT - I try to set up guest Role = OnlineMeetingRole Presenter, but i can't get guest user id.
//guest user attendeeList.Add(new MeetingParticipantInfo { Role = OnlineMeetingRole.Presenter, Identity = new IdentitySet { User = new Identity { Id = "guest user id" } } //guest user id ?? });- Nivedipa-MSFTFeb 21, 2022
Microsoft
You can get the id of guest user by following graph API.
https://graph.microsoft.com/v1.0/users/?$filter=userType eq 'guest'Ref Doc:
- liao_benFeb 21, 2022Copper Contributor
The guest user isn't exist in the AAD.
My scenario is as follows:
Step1: create a online meeting, set AllowedPresenters = OnlineMeetingPresenters.Everyone
Step2. Get joinWebUrl
Step3. organization user join the meeting
Step4. guest users join the meeting without login in and set a name
step5. set the user of the organization as a attendee, and the guest as the presenter