New-MgBetaVirtualEventWebinarRegistration

Create a registration record for a registrant of a webinar. This method registers the person for the webinar.

Note

To view the v1.0 release of this cmdlet, view New-MgVirtualEventWebinarRegistration

Syntax

CreateExpanded (Default)

New-MgBetaVirtualEventWebinarRegistration
    -VirtualEventWebinarId <string>
    [-ResponseHeadersVariable <string>]
    [-AdditionalProperties <hashtable>]
    [-CancelationDateTime <datetime>]
    [-Email <string>]
    [-ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]
    [-FirstName <string>]
    [-Id <string>]
    [-LastName <string>]
    [-PreferredLanguage <string>]
    [-PreferredTimezone <string>]
    [-RegistrantVideoOnDemandWebUrl <string>]
    [-RegistrationDateTime <datetime>]
    [-RegistrationQuestionAnswers <IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]>]
    [-Sessions <IMicrosoftGraphVirtualEventSession[]>]
    [-Status <string>]
    [-UserId <string>]
    [-Break]
    [-Headers <IDictionary>]
    [-HttpPipelineAppend <SendAsyncStep[]>]
    [-HttpPipelinePrepend <SendAsyncStep[]>]
    [-Proxy <uri>]
    [-ProxyCredential <pscredential>]
    [-ProxyUseDefaultCredentials]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

Create

New-MgBetaVirtualEventWebinarRegistration
    -VirtualEventWebinarId <string>
    -BodyParameter <IMicrosoftGraphVirtualEventRegistration>
    [-ResponseHeadersVariable <string>]
    [-Break]
    [-Headers <IDictionary>]
    [-HttpPipelineAppend <SendAsyncStep[]>]
    [-HttpPipelinePrepend <SendAsyncStep[]>]
    [-Proxy <uri>]
    [-ProxyCredential <pscredential>]
    [-ProxyUseDefaultCredentials]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

CreateViaIdentityExpanded

New-MgBetaVirtualEventWebinarRegistration
    -InputObject <IBookingsIdentity>
    [-ResponseHeadersVariable <string>]
    [-AdditionalProperties <hashtable>]
    [-CancelationDateTime <datetime>]
    [-Email <string>]
    [-ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]
    [-FirstName <string>]
    [-Id <string>]
    [-LastName <string>]
    [-PreferredLanguage <string>]
    [-PreferredTimezone <string>]
    [-RegistrantVideoOnDemandWebUrl <string>]
    [-RegistrationDateTime <datetime>]
    [-RegistrationQuestionAnswers <IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]>]
    [-Sessions <IMicrosoftGraphVirtualEventSession[]>]
    [-Status <string>]
    [-UserId <string>]
    [-Break]
    [-Headers <IDictionary>]
    [-HttpPipelineAppend <SendAsyncStep[]>]
    [-HttpPipelinePrepend <SendAsyncStep[]>]
    [-Proxy <uri>]
    [-ProxyCredential <pscredential>]
    [-ProxyUseDefaultCredentials]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

CreateViaIdentity

New-MgBetaVirtualEventWebinarRegistration
    -InputObject <IBookingsIdentity>
    -BodyParameter <IMicrosoftGraphVirtualEventRegistration>
    [-ResponseHeadersVariable <string>]
    [-Break]
    [-Headers <IDictionary>]
    [-HttpPipelineAppend <SendAsyncStep[]>]
    [-HttpPipelinePrepend <SendAsyncStep[]>]
    [-Proxy <uri>]
    [-ProxyCredential <pscredential>]
    [-ProxyUseDefaultCredentials]
    [-WhatIf]
    [-Confirm]
    [<CommonParameters>]

Description

Create a registration record for a registrant of a webinar. This method registers the person for the webinar.

Permissions

Permission type Permissions (from least to most privileged)
Delegated (work or school account) VirtualEvent.ReadWrite,
Delegated (personal Microsoft account) Not supported
Application VirtualEventRegistration-Anon.ReadWrite.Chat, VirtualEventRegistration-Anon.ReadWrite.All,

Examples

Example 1: Creating registration record with delegated permission


Import-Module Microsoft.Graph.Beta.Bookings

$params = @{
	externalRegistrationInformation = @{
		referrer = "Fabrikam"
		registrationId = "myExternalRegistrationId"
	}
	preferredTimezone = "Pacific Standard Time"
	preferredLanguage = "en-us"
	registrationQuestionAnswers = @(
		@{
			questionId = "95320781-96b3-4b8f-8cf8-e6561d23447a"
			value = $null
			booleanValue = $null
			multiChoiceValues = @(
			"Seattle"
		)
	}
	@{
		questionId = "4577afdb-8bee-4219-b482-04b52c6b855c"
		value = $null
		booleanValue = $true
		multiChoiceValues = @(
		)
	}
	@{
		questionId = "80fefcf1-caf7-4cd3-b8d7-159e17c47f20"
		value = $null
		booleanValue = $null
		multiChoiceValues = @(
		"Cancun"
	"Hoboken"
"Beijing"
)
}
)
}

New-MgBetaVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params

This example shows creating registration record with delegated permission

Example 2: Creating registration record with application permission


Import-Module Microsoft.Graph.Beta.Bookings

$params = @{
	firstName = "Diane"
	lastName = "Demoss"
	email = "DianeDemoss@contoso.com"
	externalRegistrationInformation = @{
		referrer = "Fabrikam"
		registrationId = "myExternalRegistrationId"
	}
	preferredTimezone = "Pacific Standard Time"
	preferredLanguage = "en-us"
	registrationQuestionAnswers = @(
		@{
			questionId = "95320781-96b3-4b8f-8cf8-e6561d23447a"
			value = $null
			booleanValue = $null
			multiChoiceValues = @(
			"Seattle"
		)
	}
	@{
		questionId = "4577afdb-8bee-4219-b482-04b52c6b855c"
		value = $null
		booleanValue = $true
		multiChoiceValues = @(
		)
	}
	@{
		questionId = "80fefcf1-caf7-4cd3-b8d7-159e17c47f20"
		value = $null
		booleanValue = $null
		multiChoiceValues = @(
		"London"
	"New York City"
)
}
)
}

New-MgBetaVirtualEventWebinarRegistration -VirtualEventWebinarId $virtualEventWebinarId -BodyParameter $params

This example shows creating registration record with application permission

Parameters

-AdditionalProperties

Additional Parameters

Parameter properties

Type:System.Collections.Hashtable
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-BodyParameter

virtualEventRegistration To construct, see NOTES section for BODYPARAMETER properties and create a hash table.

Parameter properties

Type:Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventRegistration
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentity
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False
Create
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False

-Break

Wait for .NET debugger to attach

Parameter properties

Type:System.Management.Automation.SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-CancelationDateTime

Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.

Parameter properties

Type:System.DateTime
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Confirm

Prompts you for confirmation before running the cmdlet.

Parameter properties

Type:System.Management.Automation.SwitchParameter
Supports wildcards:False
DontShow:False
Aliases:cf

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Email

Email address of the registrant.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ExternalRegistrationInformation

virtualEventExternalRegistrationInformation To construct, see NOTES section for EXTERNALREGISTRATIONINFORMATION properties and create a hash table.

Parameter properties

Type:Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventExternalRegistrationInformation
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-FirstName

First name of the registrant.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Headers

Optional headers that will be added to the request.

Parameter properties

Type:System.Collections.IDictionary
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False

-HttpPipelineAppend

SendAsync Pipeline Steps to be appended to the front of the pipeline

Parameter properties

Type:

Microsoft.Graph.Beta.PowerShell.Runtime.SendAsyncStep[]

Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-HttpPipelinePrepend

SendAsync Pipeline Steps to be prepended to the front of the pipeline

Parameter properties

Type:

Microsoft.Graph.Beta.PowerShell.Runtime.SendAsyncStep[]

Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Id

The unique identifier for an entity. Read-only.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-InputObject

Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.

Parameter properties

Type:Microsoft.Graph.Beta.PowerShell.Models.IBookingsIdentity
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False
CreateViaIdentity
Position:Named
Mandatory:True
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False

-LastName

Last name of the registrant.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-PreferredLanguage

The registrant's preferred language.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-PreferredTimezone

The registrant's time zone details.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Proxy

The URI for the proxy server to use

Parameter properties

Type:System.Uri
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ProxyCredential

Credentials for a proxy server to use for the remote call

Parameter properties

Type:System.Management.Automation.PSCredential
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ProxyUseDefaultCredentials

Use the default credentials for the proxy

Parameter properties

Type:System.Management.Automation.SwitchParameter
Default value:False
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RegistrantVideoOnDemandWebUrl

Create a registration record for a registrant of a webinar. This method registers the person for the webinar.

Permissions

Permission type Permissions (from least to most privileged)
Delegated (work or school account) VirtualEvent.ReadWrite,
Delegated (personal Microsoft account) Not supported
Application VirtualEventRegistration-Anon.ReadWrite.Chat, VirtualEventRegistration-Anon.ReadWrite.All,

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RegistrationDateTime

Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.

Parameter properties

Type:System.DateTime
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RegistrationQuestionAnswers

The registrant's answer to the registration questions. To construct, see NOTES section for REGISTRATIONQUESTIONANSWERS properties and create a hash table.

Parameter properties

Type:

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]

Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ResponseHeadersVariable

Optional Response Headers Variable.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False
Aliases:RHV

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Sessions

Sessions for a registration. To construct, see NOTES section for SESSIONS properties and create a hash table.

Parameter properties

Type:

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventSession[]

Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-Status

virtualEventAttendeeRegistrationStatus

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-UserId

The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID.

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateViaIdentityExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
CreateExpanded
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-VirtualEventWebinarId

The unique identifier of virtualEventWebinar

Parameter properties

Type:System.String
Supports wildcards:False
DontShow:False

Parameter sets

CreateExpanded
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
Create
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-WhatIf

Runs the command in a mode that only reports what would happen without performing the actions.

Parameter properties

Type:System.Management.Automation.SwitchParameter
Supports wildcards:False
DontShow:False
Aliases:wi

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

Inputs

Microsoft.Graph.Beta.PowerShell.Models.IBookingsIdentity

{{ Fill in the Description }}

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventRegistration

{{ Fill in the Description }}

System.Collections.IDictionary

{{ Fill in the Description }}

Outputs

Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphVirtualEventRegistration

{{ Fill in the Description }}

Notes

COMPLEX PARAMETER PROPERTIES

To create the parameters described below, construct a hash table containing the appropriate properties. For information on hash tables, run Get-Help about_Hash_Tables.

BODYPARAMETER <IMicrosoftGraphVirtualEventRegistration>: virtualEventRegistration [(Any) <Object>]: This indicates any property can be added to this object. [Id <String>]: The unique identifier for an entity. Read-only. [CancelationDateTime <DateTime?>]: Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Email <String>]: Email address of the registrant. [ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]: virtualEventExternalRegistrationInformation [(Any) <Object>]: This indicates any property can be added to this object. [Referrer <String>]: A URL or string that represents the location from which the registrant registered. Optional. [RegistrationId <String>]: The identifier for a virtualEventExternalRegistrationInformation object. Optional. If set, the maximum supported length is 256 characters. [FirstName <String>]: First name of the registrant. [LastName <String>]: Last name of the registrant. [PreferredLanguage <String>]: The registrant's preferred language. [PreferredTimezone <String>]: The registrant's time zone details. [RegistrantVideoOnDemandWebUrl <String>]: [RegistrationDateTime <DateTime?>]: Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [RegistrationQuestionAnswers <IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]>]: The registrant's answer to the registration questions. [BooleanValue <Boolean?>]: Boolean answer to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is boolean. [DisplayName <String>]: Display name of the registration question. [MultiChoiceValues <String[]>]: A collection of text answers to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is multiChoice. [QuestionId <String>]: The identifier of either a virtualEventRegistrationCustomQuestion or a virtualEventRegistrationPredefinedQuestion. [Value <String>]: Text answer to the virtualEventRegistrationCustomQuestion or the virtualEventRegistrationPredefinedQuestion. Appears when answerInputType is text, multilineText or singleChoice. [Sessions <IMicrosoftGraphVirtualEventSession[]>]: Sessions for a registration. [AllowAttendeeToEnableCamera <Boolean?>]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic <Boolean?>]: Indicates whether attendees can turn on their microphone. [AllowBreakoutRooms <Boolean?>]: Indicates whether breakout rooms are enabled for the meeting. [AllowCopyingAndSharingMeetingContent <Boolean?>]: Indicates whether copying and sharing meeting content is enabled for the meeting. [AllowLiveShare <String>]: meetingLiveShareOptions [AllowMeetingChat <String>]: meetingChatMode [AllowParticipantsToChangeName <Boolean?>]: Specifies if participants are allowed to rename themselves in an instance of the meeting. [AllowPowerPointSharing <Boolean?>]: Indicates whether PowerPoint live is enabled for the meeting. [AllowRecording <Boolean?>]: Indicates whether recording is enabled for the meeting. [AllowTeamworkReactions <Boolean?>]: Indicates if Teams reactions are enabled for the meeting. [AllowTranscription <Boolean?>]: Indicates whether transcription is enabled for the meeting. [AllowWhiteboard <Boolean?>]: Indicates whether whiteboard is enabled for the meeting. [AllowedLobbyAdmitters <String>]: allowedLobbyAdmitterRoles [AllowedPresenters <String>]: onlineMeetingPresenters [AnonymizeIdentityForRoles <String[]>]: Specifies whose identity is anonymized in the meeting. The possible values are: attendee. The attendee value can't be removed through a PATCH operation once added. [AttendanceReports <IMicrosoftGraphMeetingAttendanceReport[]>]: The attendance reports of an online meeting. Read-only. [Id <String>]: The unique identifier for an entity. Read-only. [AttendanceRecords <IMicrosoftGraphAttendanceRecord[]>]: List of attendance records of an attendance report. Read-only. [Id <String>]: The unique identifier for an entity. Read-only. [AttendanceIntervals <IMicrosoftGraphAttendanceInterval[]>]: List of time periods between joining and leaving a meeting. [DurationInSeconds <Int32?>]: Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime. [JoinDateTime <DateTime?>]: The time the attendee joined in UTC. [LeaveDateTime <DateTime?>]: The time the attendee left in UTC. [EmailAddress <String>]: Email address of the user associated with this attendance record. [ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]: virtualEventExternalRegistrationInformation [Identity <IMicrosoftGraphIdentity>]: identity [(Any) <Object>]: This indicates any property can be added to this object. [DisplayName <String>]: The display name of the identity. For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id <String>]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [RegistrantId <String>]: Unique identifier of a meetingRegistrant. Presents when the participant has registered for the meeting. (deprecated) [RegistrationId <String>]: Unique identifier of a virtualEventRegistration. Presents for all participant who has registered for the virtualEventWebinar. [Role <String>]: Role of the attendee. The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds <Int32?>]: Total duration of the attendances in seconds. [ExternalEventInformation <IMicrosoftGraphVirtualEventExternalInformation[]>]: The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only. [ApplicationId <String>]: Identifier of the application that hosts the externalEventId. Read-only. [ExternalEventId <String>]: The identifier for a virtualEventExternalInformation object that associates the virtual event with an event ID in an external application. This association bundles all the information (both supported and not supported in virtualEvent) into one virtual event object. Optional. If set, the maximum supported length is 256 characters. [MeetingEndDateTime <DateTime?>]: UTC time when the meeting ended. Read-only. [MeetingStartDateTime <DateTime?>]: UTC time when the meeting started. Read-only. [TotalParticipantCount <Int32?>]: Total number of participants. Read-only. [AudioConferencing <IMicrosoftGraphAudioConferencing>]: audioConferencing [(Any) <Object>]: This indicates any property can be added to this object. [ConferenceId <String>]: The conference id of the online meeting. [DialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [TollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [TollFreeNumbers <String[]>]: List of toll-free numbers that are displayed in the meeting invite. [TollNumber <String>]: The toll number that connects to the Audio Conference Provider. [TollNumbers <String[]>]: List of toll numbers that are displayed in the meeting invite. [ChatInfo <IMicrosoftGraphChatInfo>]: chatInfo [(Any) <Object>]: This indicates any property can be added to this object. [MessageId <String>]: The unique identifier for a message in a Microsoft Teams channel. [ReplyChainMessageId <String>]: The ID of the reply message. [ThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [ChatRestrictions <IMicrosoftGraphChatRestrictions>]: chatRestrictions [(Any) <Object>]: This indicates any property can be added to this object. [AllowTextOnly <Boolean?>]: Indicates whether only text is allowed in the meeting chat. Optional. [ExpiryDateTime <DateTime?>]: Indicates the date and time when the meeting resource expires. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [IsEndToEndEncryptionEnabled <Boolean?>]: Indicates whether end-to-end encryption (E2EE) is enabled for the online meeting. [IsEntryExitAnnounced <Boolean?>]: Indicates whether to announce when callers join or leave. [JoinInformation <IMicrosoftGraphItemBody>]: itemBody [(Any) <Object>]: This indicates any property can be added to this object. [Content <String>]: The content of the item. [ContentType <String>]: bodyType [JoinMeetingIdSettings <IMicrosoftGraphJoinMeetingIdSettings>]: joinMeetingIdSettings [(Any) <Object>]: This indicates any property can be added to this object. [IsPasscodeRequired <Boolean?>]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. [JoinMeetingId <String>]: The meeting ID to be used to join a meeting. Optional. Read-only. [Passcode <String>]: The passcode to join a meeting. Optional. Read-only. [JoinWebUrl <String>]: The join URL of the online meeting. Read-only. [LobbyBypassSettings <IMicrosoftGraphLobbyBypassSettings>]: lobbyBypassSettings [(Any) <Object>]: This indicates any property can be added to this object. [IsDialInBypassEnabled <Boolean?>]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope <String>]: lobbyBypassScope [MeetingOptionsWebUrl <String>]: Provides the URL to the Teams meeting options page for the specified meeting. This link allows only the organizer to configure meeting settings. [MeetingSpokenLanguageTag <String>]: Specifies the spoken language used during the meeting for recording and transcription purposes. [RecordAutomatically <Boolean?>]: Indicates whether to record the meeting automatically. [SensitivityLabelAssignment <IMicrosoftGraphOnlineMeetingSensitivityLabelAssignment>]: onlineMeetingSensitivityLabelAssignment [(Any) <Object>]: This indicates any property can be added to this object. [SensitivityLabelId <String>]: Id of the sensitivity label that is applied to the Teams meeting. [ShareMeetingChatHistoryDefault <String>]: meetingChatHistoryDefaultMode [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. [WatermarkProtection <IMicrosoftGraphWatermarkProtectionValues>]: watermarkProtectionValues [(Any) <Object>]: This indicates any property can be added to this object. [IsEnabledForContentSharing <Boolean?>]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo <Boolean?>]: Indicates whether to apply a watermark to everyone's video feed. [Id <String>]: The unique identifier for an entity. Read-only. [EndDateTime <IMicrosoftGraphDateTimeZone>]: dateTimeTimeZone [(Any) <Object>]: This indicates any property can be added to this object. [DateTime <String>]: A single point of time in a combined date and time representation ({date}T{time}). For example, '2019-04-16T09:00:00'. [TimeZone <String>]: Represents a time zone, for example, 'Pacific Standard Time'. See below for possible values. [Presenters <IMicrosoftGraphVirtualEventPresenter[]>]: [Id <String>]: The unique identifier for an entity. Read-only. [Email <String>]: Email address of the presenter. [Identity <IMicrosoftGraphIdentity>]: identity [PresenterDetails <IMicrosoftGraphVirtualEventPresenterDetails>]: virtualEventPresenterDetails [(Any) <Object>]: This indicates any property can be added to this object. [Bio <IMicrosoftGraphItemBody>]: itemBody [Company <String>]: The presenter's company name. [JobTitle <String>]: The presenter's job title. [LinkedInProfileWebUrl <String>]: The presenter's LinkedIn profile URL. [PersonalSiteWebUrl <String>]: The presenter's personal website URL. [Photo <Byte[]>]: The content stream of the presenter's photo. [TwitterProfileWebUrl <String>]: The presenter's Twitter profile URL. [Sessions <IMicrosoftGraphVirtualEventSession[]>]: [Registrations <IMicrosoftGraphVirtualEventRegistration[]>]: [StartDateTime <IMicrosoftGraphDateTimeZone>]: dateTimeTimeZone [VideoOnDemandWebUrl <String>]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings. [Status <String>]: virtualEventAttendeeRegistrationStatus [UserId <String>]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID.

EXTERNALREGISTRATIONINFORMATION <IMicrosoftGraphVirtualEventExternalRegistrationInformation>: virtualEventExternalRegistrationInformation [(Any) <Object>]: This indicates any property can be added to this object. [Referrer <String>]: A URL or string that represents the location from which the registrant registered. Optional. [RegistrationId <String>]: The identifier for a virtualEventExternalRegistrationInformation object. Optional. If set, the maximum supported length is 256 characters.

INPUTOBJECT <IBookingsIdentity>: Identity Parameter [AttendanceRecordId <String>]: The unique identifier of attendanceRecord [BookingAppointmentId <String>]: The unique identifier of bookingAppointment [BookingBusinessId <String>]: The unique identifier of bookingBusiness [BookingCurrencyId <String>]: The unique identifier of bookingCurrency [BookingCustomQuestionId <String>]: The unique identifier of bookingCustomQuestion [BookingCustomerId <String>]: The unique identifier of bookingCustomer [BookingServiceId <String>]: The unique identifier of bookingService [BookingStaffMemberId <String>]: The unique identifier of bookingStaffMember [Email <String>]: Alternate key of virtualEventRegistration [JoinWebUrl <String>]: Alternate key of virtualEventSession [MeetingAttendanceReportId <String>]: The unique identifier of meetingAttendanceReport [Role <String>]: Usage: role='{role}' [UserId <String>]: Alternate key of virtualEventRegistration [VirtualEventId <String>]: The unique identifier of virtualEvent [VirtualEventPresenterId <String>]: The unique identifier of virtualEventPresenter [VirtualEventRegistrationId <String>]: The unique identifier of virtualEventRegistration [VirtualEventRegistrationQuestionBaseId <String>]: The unique identifier of virtualEventRegistrationQuestionBase [VirtualEventSessionId <String>]: The unique identifier of virtualEventSession [VirtualEventTownhallId <String>]: The unique identifier of virtualEventTownhall [VirtualEventWebinarId <String>]: The unique identifier of virtualEventWebinar

REGISTRATIONQUESTIONANSWERS <IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]>: The registrant's answer to the registration questions. [BooleanValue <Boolean?>]: Boolean answer to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is boolean. [DisplayName <String>]: Display name of the registration question. [MultiChoiceValues <String[]>]: A collection of text answers to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is multiChoice. [QuestionId <String>]: The identifier of either a virtualEventRegistrationCustomQuestion or a virtualEventRegistrationPredefinedQuestion. [Value <String>]: Text answer to the virtualEventRegistrationCustomQuestion or the virtualEventRegistrationPredefinedQuestion. Appears when answerInputType is text, multilineText or singleChoice.

SESSIONS <IMicrosoftGraphVirtualEventSession[]>: Sessions for a registration. [AllowAttendeeToEnableCamera <Boolean?>]: Indicates whether attendees can turn on their camera. [AllowAttendeeToEnableMic <Boolean?>]: Indicates whether attendees can turn on their microphone. [AllowBreakoutRooms <Boolean?>]: Indicates whether breakout rooms are enabled for the meeting. [AllowCopyingAndSharingMeetingContent <Boolean?>]: Indicates whether copying and sharing meeting content is enabled for the meeting. [AllowLiveShare <String>]: meetingLiveShareOptions [AllowMeetingChat <String>]: meetingChatMode [AllowParticipantsToChangeName <Boolean?>]: Specifies if participants are allowed to rename themselves in an instance of the meeting. [AllowPowerPointSharing <Boolean?>]: Indicates whether PowerPoint live is enabled for the meeting. [AllowRecording <Boolean?>]: Indicates whether recording is enabled for the meeting. [AllowTeamworkReactions <Boolean?>]: Indicates if Teams reactions are enabled for the meeting. [AllowTranscription <Boolean?>]: Indicates whether transcription is enabled for the meeting. [AllowWhiteboard <Boolean?>]: Indicates whether whiteboard is enabled for the meeting. [AllowedLobbyAdmitters <String>]: allowedLobbyAdmitterRoles [AllowedPresenters <String>]: onlineMeetingPresenters [AnonymizeIdentityForRoles <String[]>]: Specifies whose identity is anonymized in the meeting. The possible values are: attendee. The attendee value can't be removed through a PATCH operation once added. [AttendanceReports <IMicrosoftGraphMeetingAttendanceReport[]>]: The attendance reports of an online meeting. Read-only. [Id <String>]: The unique identifier for an entity. Read-only. [AttendanceRecords <IMicrosoftGraphAttendanceRecord[]>]: List of attendance records of an attendance report. Read-only. [Id <String>]: The unique identifier for an entity. Read-only. [AttendanceIntervals <IMicrosoftGraphAttendanceInterval[]>]: List of time periods between joining and leaving a meeting. [DurationInSeconds <Int32?>]: Duration of the meeting interval in seconds; that is, the difference between joinDateTime and leaveDateTime. [JoinDateTime <DateTime?>]: The time the attendee joined in UTC. [LeaveDateTime <DateTime?>]: The time the attendee left in UTC. [EmailAddress <String>]: Email address of the user associated with this attendance record. [ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]: virtualEventExternalRegistrationInformation [(Any) <Object>]: This indicates any property can be added to this object. [Referrer <String>]: A URL or string that represents the location from which the registrant registered. Optional. [RegistrationId <String>]: The identifier for a virtualEventExternalRegistrationInformation object. Optional. If set, the maximum supported length is 256 characters. [Identity <IMicrosoftGraphIdentity>]: identity [(Any) <Object>]: This indicates any property can be added to this object. [DisplayName <String>]: The display name of the identity. For drive items, the display name might not always be available or up to date. For example, if a user changes their display name the API might show the new value in a future response, but the items associated with the user don't show up as changed when using delta. [Id <String>]: Unique identifier for the identity or actor. For example, in the access reviews decisions API, this property might record the id of the principal, that is, the group, user, or application that's subject to review. [RegistrantId <String>]: Unique identifier of a meetingRegistrant. Presents when the participant has registered for the meeting. (deprecated) [RegistrationId <String>]: Unique identifier of a virtualEventRegistration. Presents for all participant who has registered for the virtualEventWebinar. [Role <String>]: Role of the attendee. The possible values are: None, Attendee, Presenter, and Organizer. [TotalAttendanceInSeconds <Int32?>]: Total duration of the attendances in seconds. [ExternalEventInformation <IMicrosoftGraphVirtualEventExternalInformation[]>]: The external information of a virtual event. Returned only for event organizers or coorganizers. Read-only. [ApplicationId <String>]: Identifier of the application that hosts the externalEventId. Read-only. [ExternalEventId <String>]: The identifier for a virtualEventExternalInformation object that associates the virtual event with an event ID in an external application. This association bundles all the information (both supported and not supported in virtualEvent) into one virtual event object. Optional. If set, the maximum supported length is 256 characters. [MeetingEndDateTime <DateTime?>]: UTC time when the meeting ended. Read-only. [MeetingStartDateTime <DateTime?>]: UTC time when the meeting started. Read-only. [TotalParticipantCount <Int32?>]: Total number of participants. Read-only. [AudioConferencing <IMicrosoftGraphAudioConferencing>]: audioConferencing [(Any) <Object>]: This indicates any property can be added to this object. [ConferenceId <String>]: The conference id of the online meeting. [DialinUrl <String>]: A URL to the externally-accessible web page that contains dial-in information. [TollFreeNumber <String>]: The toll-free number that connects to the Audio Conference Provider. [TollFreeNumbers <String[]>]: List of toll-free numbers that are displayed in the meeting invite. [TollNumber <String>]: The toll number that connects to the Audio Conference Provider. [TollNumbers <String[]>]: List of toll numbers that are displayed in the meeting invite. [ChatInfo <IMicrosoftGraphChatInfo>]: chatInfo [(Any) <Object>]: This indicates any property can be added to this object. [MessageId <String>]: The unique identifier for a message in a Microsoft Teams channel. [ReplyChainMessageId <String>]: The ID of the reply message. [ThreadId <String>]: The unique identifier for a thread in Microsoft Teams. [ChatRestrictions <IMicrosoftGraphChatRestrictions>]: chatRestrictions [(Any) <Object>]: This indicates any property can be added to this object. [AllowTextOnly <Boolean?>]: Indicates whether only text is allowed in the meeting chat. Optional. [ExpiryDateTime <DateTime?>]: Indicates the date and time when the meeting resource expires. The timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [IsEndToEndEncryptionEnabled <Boolean?>]: Indicates whether end-to-end encryption (E2EE) is enabled for the online meeting. [IsEntryExitAnnounced <Boolean?>]: Indicates whether to announce when callers join or leave. [JoinInformation <IMicrosoftGraphItemBody>]: itemBody [(Any) <Object>]: This indicates any property can be added to this object. [Content <String>]: The content of the item. [ContentType <String>]: bodyType [JoinMeetingIdSettings <IMicrosoftGraphJoinMeetingIdSettings>]: joinMeetingIdSettings [(Any) <Object>]: This indicates any property can be added to this object. [IsPasscodeRequired <Boolean?>]: Indicates whether a passcode is required to join a meeting when using joinMeetingId. Optional. [JoinMeetingId <String>]: The meeting ID to be used to join a meeting. Optional. Read-only. [Passcode <String>]: The passcode to join a meeting. Optional. Read-only. [JoinWebUrl <String>]: The join URL of the online meeting. Read-only. [LobbyBypassSettings <IMicrosoftGraphLobbyBypassSettings>]: lobbyBypassSettings [(Any) <Object>]: This indicates any property can be added to this object. [IsDialInBypassEnabled <Boolean?>]: Specifies whether or not to always let dial-in callers bypass the lobby. Optional. [Scope <String>]: lobbyBypassScope [MeetingOptionsWebUrl <String>]: Provides the URL to the Teams meeting options page for the specified meeting. This link allows only the organizer to configure meeting settings. [MeetingSpokenLanguageTag <String>]: Specifies the spoken language used during the meeting for recording and transcription purposes. [RecordAutomatically <Boolean?>]: Indicates whether to record the meeting automatically. [SensitivityLabelAssignment <IMicrosoftGraphOnlineMeetingSensitivityLabelAssignment>]: onlineMeetingSensitivityLabelAssignment [(Any) <Object>]: This indicates any property can be added to this object. [SensitivityLabelId <String>]: Id of the sensitivity label that is applied to the Teams meeting. [ShareMeetingChatHistoryDefault <String>]: meetingChatHistoryDefaultMode [Subject <String>]: The subject of the online meeting. [VideoTeleconferenceId <String>]: The video teleconferencing ID. Read-only. [WatermarkProtection <IMicrosoftGraphWatermarkProtectionValues>]: watermarkProtectionValues [(Any) <Object>]: This indicates any property can be added to this object. [IsEnabledForContentSharing <Boolean?>]: Indicates whether to apply a watermark to any shared content. [IsEnabledForVideo <Boolean?>]: Indicates whether to apply a watermark to everyone's video feed. [Id <String>]: The unique identifier for an entity. Read-only. [EndDateTime <IMicrosoftGraphDateTimeZone>]: dateTimeTimeZone [(Any) <Object>]: This indicates any property can be added to this object. [DateTime <String>]: A single point of time in a combined date and time representation ({date}T{time}). For example, '2019-04-16T09:00:00'. [TimeZone <String>]: Represents a time zone, for example, 'Pacific Standard Time'. See below for possible values. [Presenters <IMicrosoftGraphVirtualEventPresenter[]>]: [Id <String>]: The unique identifier for an entity. Read-only. [Email <String>]: Email address of the presenter. [Identity <IMicrosoftGraphIdentity>]: identity [PresenterDetails <IMicrosoftGraphVirtualEventPresenterDetails>]: virtualEventPresenterDetails [(Any) <Object>]: This indicates any property can be added to this object. [Bio <IMicrosoftGraphItemBody>]: itemBody [Company <String>]: The presenter's company name. [JobTitle <String>]: The presenter's job title. [LinkedInProfileWebUrl <String>]: The presenter's LinkedIn profile URL. [PersonalSiteWebUrl <String>]: The presenter's personal website URL. [Photo <Byte[]>]: The content stream of the presenter's photo. [TwitterProfileWebUrl <String>]: The presenter's Twitter profile URL. [Sessions <IMicrosoftGraphVirtualEventSession[]>]: [Registrations <IMicrosoftGraphVirtualEventRegistration[]>]: [Id <String>]: The unique identifier for an entity. Read-only. [CancelationDateTime <DateTime?>]: Date and time when the registrant cancels their registration for the virtual event. Only appears when applicable. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [Email <String>]: Email address of the registrant. [ExternalRegistrationInformation <IMicrosoftGraphVirtualEventExternalRegistrationInformation>]: virtualEventExternalRegistrationInformation [FirstName <String>]: First name of the registrant. [LastName <String>]: Last name of the registrant. [PreferredLanguage <String>]: The registrant's preferred language. [PreferredTimezone <String>]: The registrant's time zone details. [RegistrantVideoOnDemandWebUrl <String>]: [RegistrationDateTime <DateTime?>]: Date and time when the registrant registers for the virtual event. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. [RegistrationQuestionAnswers <IMicrosoftGraphVirtualEventRegistrationQuestionAnswer[]>]: The registrant's answer to the registration questions. [BooleanValue <Boolean?>]: Boolean answer to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is boolean. [DisplayName <String>]: Display name of the registration question. [MultiChoiceValues <String[]>]: A collection of text answers to the virtualEventRegistrationCustomQuestion. Only appears when answerInputType is multiChoice. [QuestionId <String>]: The identifier of either a virtualEventRegistrationCustomQuestion or a virtualEventRegistrationPredefinedQuestion. [Value <String>]: Text answer to the virtualEventRegistrationCustomQuestion or the virtualEventRegistrationPredefinedQuestion. Appears when answerInputType is text, multilineText or singleChoice. [Sessions <IMicrosoftGraphVirtualEventSession[]>]: Sessions for a registration. [Status <String>]: virtualEventAttendeeRegistrationStatus [UserId <String>]: The registrant's ID in Microsoft Entra ID. Only appears when the registrant is registered in Microsoft Entra ID. [StartDateTime <IMicrosoftGraphDateTimeZone>]: dateTimeTimeZone [VideoOnDemandWebUrl <String>]: The URL of the video on demand (VOD) for Microsoft Teams events that allows webinar and town hall organizers to quickly publish and share event recordings.