| description |
Automatically generated file. DO NOT MODIFY |
// Code snippets are only available for the latest version. Current version is 5.x
// Dependencies
using Microsoft.Graph.Beta.Models;
var requestBody = new ExternalMeetingRegistrant
{
OdataType = "#microsoft.graph.externalMeetingRegistrant",
Id = "30494ab7-7338-4592-bfec-a4333be2a0a6",
TenantId = "909c6581-5130-43e9-88f3-fcb3582cde37",
UserId = "cc515404-b55c-466e-b896-992c918ecc01",
};
// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
var result = await graphClient.Me.OnlineMeetings["{onlineMeeting-id}"].Registration.Registrants.PostAsync(requestBody);