Create new navigation property to onlineMeetings for users
Permissions
Permission type
Permissions (from least to most privileged)
Delegated (work or school account)
OnlineMeetings.ReadWrite,
Delegated (personal Microsoft account)
Not supported
Application
OnlineMeetings.ReadWrite.All,
Examples
Example 1: Create an online meeting with user token
Import-Module Microsoft.Graph.CloudCommunications
$params = @{
startDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00")
endDateTime = [System.DateTime]::Parse("2019-07-12T15:00:34.2464912-07:00")
subject = "User Token Meeting"
}
# A UPN can also be used as -UserId.
New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params
This example will create an online meeting with user token
Example 2: Create an online meeting that requires a passcode
Import-Module Microsoft.Graph.CloudCommunications
$params = @{
startDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00")
endDateTime = [System.DateTime]::Parse("2019-07-12T15:00:34.2464912-07:00")
subject = "User meeting"
joinMeetingIdSettings = @{
isPasscodeRequired = $true
}
}
# A UPN can also be used as -UserId.
New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params
This example will create an online meeting that requires a passcode
Example 3: Create an online meeting that doesn't require a passcode
Import-Module Microsoft.Graph.CloudCommunications
$params = @{
startDateTime = [System.DateTime]::Parse("2019-07-12T14:30:34.2444915-07:00")
endDateTime = [System.DateTime]::Parse("2019-07-12T15:00:34.2464912-07:00")
subject = "User meeting in Microsoft Teams channel."
joinMeetingIdSettings = @{
isPasscodeRequired = $false
}
}
# A UPN can also be used as -UserId.
New-MgUserOnlineMeeting -UserId $userId -BodyParameter $params
This example will create an online meeting that doesn't require a passcode
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
-AllowAttendeeToEnableCamera
Indicates whether attendees can turn on their camera.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowAttendeeToEnableMic
Indicates whether attendees can turn on their microphone.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowBreakoutRooms
Indicates whether breakout rooms are enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowCopyingAndSharingMeetingContent
Indicates whether the ability to copy and share meeting content is enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowedLobbyAdmitters
allowedLobbyAdmitterRoles
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
-AllowedPresenters
onlineMeetingPresenters
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
-AllowLiveShare
meetingLiveShareOptions
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
-AllowMeetingChat
meetingChatMode
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
-AllowParticipantsToChangeName
Specifies if participants are allowed to rename themselves in an instance of the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowPowerPointSharing
Indicates whether PowerPoint live is enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowRecording
Indicates whether recording is enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowTeamworkReactions
Indicates if Teams reactions are enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowTranscription
Indicates whether transcription is enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AllowWhiteboard
Indicates whether whiteboard is enabled for the meeting.
Parameter properties
Type:
System.Management.Automation.SwitchParameter
Default value:
False
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
-AttendanceReports
The attendance reports of an online meeting.
Read-only.
To construct, see NOTES section for ATTENDANCEREPORTS properties and create a hash table.
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.
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.
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.
[RegistrationId <String>]: Unique identifier of a virtualEventRegistration that is available to all participants registered for the virtualEventWebinar.
[Role <String>]: Role of the attendee.
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.
BODYPARAMETER <IMicrosoftGraphOnlineMeeting>: onlineMeeting
[(Any) <Object>]: This indicates any property can be added to this object.
[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 the ability to copy and share 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
[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.
[RegistrationId <String>]: Unique identifier of a virtualEventRegistration that is available to all participants registered for the virtualEventWebinar.
[Role <String>]: Role of the attendee.
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 of 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.
[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
[RecordAutomatically <Boolean?>]: Indicates whether to record the meeting automatically.
[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.
[AttendeeReport <Byte[]>]: The content stream of the attendee report of a Microsoft Teams live event.
Read-only.
[BroadcastSettings <IMicrosoftGraphBroadcastMeetingSettings>]: broadcastMeetingSettings
[(Any) <Object>]: This indicates any property can be added to this object.
[AllowedAudience <String>]: broadcastMeetingAudience
[Captions <IMicrosoftGraphBroadcastMeetingCaptionSettings>]: broadcastMeetingCaptionSettings
[(Any) <Object>]: This indicates any property can be added to this object.
[IsCaptionEnabled <Boolean?>]: Indicates whether captions are enabled for this Teams live event.
[SpokenLanguage <String>]: The spoken language.
[TranslationLanguages <String[]>]: The translation languages (choose up to 6).
[IsAttendeeReportEnabled <Boolean?>]: Indicates whether attendee report is enabled for this Teams live event.
Default value is false.
[IsQuestionAndAnswerEnabled <Boolean?>]: Indicates whether Q&A is enabled for this Teams live event.
Default value is false.
[IsRecordingEnabled <Boolean?>]: Indicates whether recording is enabled for this Teams live event.
Default value is false.
[IsVideoOnDemandEnabled <Boolean?>]: Indicates whether video on demand is enabled for this Teams live event.
Default value is false.
[CreationDateTime <DateTime?>]: The meeting creation time in UTC.
Read-only.
[EndDateTime <DateTime?>]: The meeting end time in UTC.
Required when you create an online meeting.
[ExternalId <String>]: The external ID that is a custom identifier.
Optional.
[IsBroadcast <Boolean?>]: Indicates whether this meeting is a Teams live event.
[MeetingTemplateId <String>]: The ID of the meeting template.
[Participants <IMicrosoftGraphMeetingParticipants>]: meetingParticipants
[(Any) <Object>]: This indicates any property can be added to this object.
[Attendees <IMicrosoftGraphMeetingParticipantInfo[]>]: Information about the meeting attendees.
[Identity <IMicrosoftGraphIdentitySet>]: identitySet
[(Any) <Object>]: This indicates any property can be added to this object.
[Application <IMicrosoftGraphIdentity>]: identity
[Device <IMicrosoftGraphIdentity>]: identity
[User <IMicrosoftGraphIdentity>]: identity
[Role <String>]: onlineMeetingRole
[Upn <String>]: User principal name of the participant.
[Organizer <IMicrosoftGraphMeetingParticipantInfo>]: meetingParticipantInfo
[Recordings <IMicrosoftGraphCallRecording[]>]: The recordings of an online meeting.
Read-only.
[Id <String>]: The unique identifier for an entity.
Read-only.
[CallId <String>]: The unique identifier for the call that is related to this recording.
Read-only.
[Content <Byte[]>]: The content of the recording.
Read-only.
[ContentCorrelationId <String>]: The unique identifier that links the transcript with its corresponding recording.
Read-only.
[CreatedDateTime <DateTime?>]: Date and time at which the recording was created.
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.
Read-only.
[EndDateTime <DateTime?>]: Date and time at which the recording ends.
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.
Read-only.
[MeetingId <String>]: The unique identifier of the onlineMeeting related to this recording.
Read-only.
[MeetingOrganizer <IMicrosoftGraphIdentitySet>]: identitySet
[RecordingContentUrl <String>]: The URL that can be used to access the content of the recording.
Read-only.
[StartDateTime <DateTime?>]: The meeting start time in UTC.
[Transcripts <IMicrosoftGraphCallTranscript[]>]: The transcripts of an online meeting.
Read-only.
[Id <String>]: The unique identifier for an entity.
Read-only.
[CallId <String>]: The unique identifier for the call that is related to this transcript.
Read-only.
[Content <Byte[]>]: The content of the transcript.
Read-only.
[ContentCorrelationId <String>]: The unique identifier that links the transcript with its corresponding recording.
Read-only.
[CreatedDateTime <DateTime?>]: Date and time at which the transcript was created.
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.
Read-only.
[EndDateTime <DateTime?>]: Date and time at which the transcription ends.
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.
Read-only.
[MeetingId <String>]: The unique identifier of the online meeting related to this transcript.
Read-only.
[MeetingOrganizer <IMicrosoftGraphIdentitySet>]: identitySet
[MetadataContent <Byte[]>]: The time-aligned metadata of the utterances in the transcript.
Read-only.
[TranscriptContentUrl <String>]: The URL that can be used to access the content of the transcript.
Read-only.
BROADCASTSETTINGS <IMicrosoftGraphBroadcastMeetingSettings>: broadcastMeetingSettings
[(Any) <Object>]: This indicates any property can be added to this object.
[AllowedAudience <String>]: broadcastMeetingAudience
[Captions <IMicrosoftGraphBroadcastMeetingCaptionSettings>]: broadcastMeetingCaptionSettings
[(Any) <Object>]: This indicates any property can be added to this object.
[IsCaptionEnabled <Boolean?>]: Indicates whether captions are enabled for this Teams live event.
[SpokenLanguage <String>]: The spoken language.
[TranslationLanguages <String[]>]: The translation languages (choose up to 6).
[IsAttendeeReportEnabled <Boolean?>]: Indicates whether attendee report is enabled for this Teams live event.
Default value is false.
[IsQuestionAndAnswerEnabled <Boolean?>]: Indicates whether Q&A is enabled for this Teams live event.
Default value is false.
[IsRecordingEnabled <Boolean?>]: Indicates whether recording is enabled for this Teams live event.
Default value is false.
[IsVideoOnDemandEnabled <Boolean?>]: Indicates whether video on demand is enabled for this Teams live event.
Default value is false.
CHATINFO <IMicrosoftGraphChatInfo>: chatInfo
[(Any) <Object>]: This indicates any property can be added to this object.
[MessageId <String>]: The unique identifier of 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.
INPUTOBJECT <ICloudCommunicationsIdentity>: Identity Parameter
[AttendanceRecordId <String>]: The unique identifier of attendanceRecord
[AudioRoutingGroupId <String>]: The unique identifier of audioRoutingGroup
[CallId <String>]: The unique identifier of call
[CallRecordId <String>]: The unique identifier of callRecord
[CallRecordingId <String>]: The unique identifier of callRecording
[CallTranscriptId <String>]: The unique identifier of callTranscript
[CommsOperationId <String>]: The unique identifier of commsOperation
[ContentSharingSessionId <String>]: The unique identifier of contentSharingSession
[MeetingAttendanceReportId <String>]: The unique identifier of meetingAttendanceReport
[OnlineMeetingId <String>]: The unique identifier of onlineMeeting
[ParticipantId <String>]: The unique identifier of participant
[PresenceId <String>]: The unique identifier of presence
[SessionId <String>]: The unique identifier of session
[UserId <String>]: The unique identifier of user
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.
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
PARTICIPANTS <IMicrosoftGraphMeetingParticipants>: meetingParticipants
[(Any) <Object>]: This indicates any property can be added to this object.
[Attendees <IMicrosoftGraphMeetingParticipantInfo[]>]: Information about the meeting attendees.
[Identity <IMicrosoftGraphIdentitySet>]: identitySet
[(Any) <Object>]: This indicates any property can be added to this object.
[Application <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.
[Device <IMicrosoftGraphIdentity>]: identity
[User <IMicrosoftGraphIdentity>]: identity
[Role <String>]: onlineMeetingRole
[Upn <String>]: User principal name of the participant.
[Organizer <IMicrosoftGraphMeetingParticipantInfo>]: meetingParticipantInfo
RECORDINGS <IMicrosoftGraphCallRecording[]>: The recordings of an online meeting.
Read-only.
[Id <String>]: The unique identifier for an entity.
Read-only.
[CallId <String>]: The unique identifier for the call that is related to this recording.
Read-only.
[Content <Byte[]>]: The content of the recording.
Read-only.
[ContentCorrelationId <String>]: The unique identifier that links the transcript with its corresponding recording.
Read-only.
[CreatedDateTime <DateTime?>]: Date and time at which the recording was created.
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.
Read-only.
[EndDateTime <DateTime?>]: Date and time at which the recording ends.
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.
Read-only.
[MeetingId <String>]: The unique identifier of the onlineMeeting related to this recording.
Read-only.
[MeetingOrganizer <IMicrosoftGraphIdentitySet>]: identitySet
[(Any) <Object>]: This indicates any property can be added to this object.
[Application <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.
[Device <IMicrosoftGraphIdentity>]: identity
[User <IMicrosoftGraphIdentity>]: identity
[RecordingContentUrl <String>]: The URL that can be used to access the content of the recording.
Read-only.
TRANSCRIPTS <IMicrosoftGraphCallTranscript[]>: The transcripts of an online meeting.
Read-only.
[Id <String>]: The unique identifier for an entity.
Read-only.
[CallId <String>]: The unique identifier for the call that is related to this transcript.
Read-only.
[Content <Byte[]>]: The content of the transcript.
Read-only.
[ContentCorrelationId <String>]: The unique identifier that links the transcript with its corresponding recording.
Read-only.
[CreatedDateTime <DateTime?>]: Date and time at which the transcript was created.
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.
Read-only.
[EndDateTime <DateTime?>]: Date and time at which the transcription ends.
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.
Read-only.
[MeetingId <String>]: The unique identifier of the online meeting related to this transcript.
Read-only.
[MeetingOrganizer <IMicrosoftGraphIdentitySet>]: identitySet
[(Any) <Object>]: This indicates any property can be added to this object.
[Application <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.
[Device <IMicrosoftGraphIdentity>]: identity
[User <IMicrosoftGraphIdentity>]: identity
[MetadataContent <Byte[]>]: The time-aligned metadata of the utterances in the transcript.
Read-only.
[TranscriptContentUrl <String>]: The URL that can be used to access the content of the transcript.
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.