Reputation: 425
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?
Upvotes: 2
Views: 1136
Reputation: 1460
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:
Upvotes: 0