1

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?

user2250152
  • 14,658
  • 4
  • 33
  • 57
shazim ali
  • 360
  • 4
  • 18

1 Answers1

0

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:

  1. https://learn.microsoft.com/en-us/graph/api/meetingregistration-post?view=graph-rest-beta&tabs=http
  2. https://learn.microsoft.com/en-us/graph/api/meetingregistration-update?view=graph-rest-beta&tabs=http
Nivedipa-MSFT
  • 1,237
  • 1
  • 2
  • 8