'How to register an attendee for a webinar via Microsoft Graph API
I want to register attendee in Microsoft Team Webinar by using my system, for this I need an API.
Does Graph API support to add an attendee for a webinar?
Solution 1:[1]
Using following graph API you can set the allowedRegistrant as everyone or organization.
1.Create meetingRegistration - POST /me/onlineMeetings/{id}/registration
2.Update meetingRegistration - PATCH /me/onlineMeetings/{id}/registration
These APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported.
Ref Doc:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Nivedipa-MSFT |
