Update-MgBetaUserOnlineMeeting
Update the navigation property onlineMeetings in users
Note
To view the v1.0 release of this cmdlet, view Update-MgUserOnlineMeeting
Syntax
Update-MgBetaUserOnlineMeeting
-OnlineMeetingId <String>
-UserId <String>
[-ResponseHeadersVariable <String>]
[-AdditionalProperties <Hashtable>]
[-AiInsights <IMicrosoftGraphCallAiInsight[]>]
[-AllowAttendeeToEnableCamera]
[-AllowAttendeeToEnableMic]
[-AllowBreakoutRooms]
[-AllowLiveShare <String>]
[-AllowMeetingChat <String>]
[-AllowParticipantsToChangeName]
[-AllowPowerPointSharing]
[-AllowRecording]
[-AllowTeamworkReactions]
[-AllowTranscription]
[-AllowWhiteboard]
[-AllowedPresenters <String>]
[-AlternativeRecordingInputFile <String>]
[-AnonymizeIdentityForRoles <String[]>]
[-AttendanceReports <IMicrosoftGraphMeetingAttendanceReport[]>]
[-AttendeeReportInputFile <String>]
[-AudioConferencing <IMicrosoftGraphAudioConferencing>]
[-BroadcastRecordingInputFile <String>]
[-BroadcastSettings <IMicrosoftGraphBroadcastMeetingSettings>]
[-Capabilities <String[]>]
[-ChatInfo <IMicrosoftGraphChatInfo>]
[-ChatRestrictions <IMicrosoftGraphChatRestrictions>]
[-CreationDateTime <DateTime>]
[-EndDateTime <DateTime>]
[-ExternalId <String>]
[-Id <String>]
[-IsBroadcast]
[-IsEndToEndEncryptionEnabled]
[-IsEntryExitAnnounced]
[-JoinInformation <IMicrosoftGraphItemBody>]
[-JoinMeetingIdSettings <IMicrosoftGraphJoinMeetingIdSettings>]
[-JoinUrl <String>]
[-JoinWebUrl <String>]
[-LobbyBypassSettings <IMicrosoftGraphLobbyBypassSettings>]
[-MeetingAttendanceReport <IMicrosoftGraphMeetingAttendanceReport>]
[-MeetingTemplateId <String>]
[-Participants <IMicrosoftGraphMeetingParticipants>]
[-RecordAutomatically]
[-RecordingInputFile <String>]
[-Recordings <IMicrosoftGraphCallRecording[]>]
[-Registration <IMicrosoftGraphMeetingRegistration>]
[-ShareMeetingChatHistoryDefault <String>]
[-StartDateTime <DateTime>]
[-Subject <String>]
[-Transcripts <IMicrosoftGraphCallTranscript[]>]
[-VideoTeleconferenceId <String>]
[-WatermarkProtection <IMicrosoftGraphWatermarkProtectionValues>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserOnlineMeeting
-OnlineMeetingId <String>
-UserId <String>
-BodyParameter <IMicrosoftGraphOnlineMeeting>
[-ResponseHeadersVariable <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserOnlineMeeting
-InputObject <ICloudCommunicationsIdentity>
[-ResponseHeadersVariable <String>]
[-AdditionalProperties <Hashtable>]
[-AiInsights <IMicrosoftGraphCallAiInsight[]>]
[-AllowAttendeeToEnableCamera]
[-AllowAttendeeToEnableMic]
[-AllowBreakoutRooms]
[-AllowLiveShare <String>]
[-AllowMeetingChat <String>]
[-AllowParticipantsToChangeName]
[-AllowPowerPointSharing]
[-AllowRecording]
[-AllowTeamworkReactions]
[-AllowTranscription]
[-AllowWhiteboard]
[-AllowedPresenters <String>]
[-AlternativeRecordingInputFile <String>]
[-AnonymizeIdentityForRoles <String[]>]
[-AttendanceReports <IMicrosoftGraphMeetingAttendanceReport[]>]
[-AttendeeReportInputFile <String>]
[-AudioConferencing <IMicrosoftGraphAudioConferencing>]
[-BroadcastRecordingInputFile <String>]
[-BroadcastSettings <IMicrosoftGraphBroadcastMeetingSettings>]
[-Capabilities <String[]>]
[-ChatInfo <IMicrosoftGraphChatInfo>]
[-ChatRestrictions <IMicrosoftGraphChatRestrictions>]
[-CreationDateTime <DateTime>]
[-EndDateTime <DateTime>]
[-ExternalId <String>]
[-Id <String>]
[-IsBroadcast]
[-IsEndToEndEncryptionEnabled]
[-IsEntryExitAnnounced]
[-JoinInformation <IMicrosoftGraphItemBody>]
[-JoinMeetingIdSettings <IMicrosoftGraphJoinMeetingIdSettings>]
[-JoinUrl <String>]
[-JoinWebUrl <String>]
[-LobbyBypassSettings <IMicrosoftGraphLobbyBypassSettings>]
[-MeetingAttendanceReport <IMicrosoftGraphMeetingAttendanceReport>]
[-MeetingTemplateId <String>]
[-Participants <IMicrosoftGraphMeetingParticipants>]
[-RecordAutomatically]
[-RecordingInputFile <String>]
[-Recordings <IMicrosoftGraphCallRecording[]>]
[-Registration <IMicrosoftGraphMeetingRegistration>]
[-ShareMeetingChatHistoryDefault <String>]
[-StartDateTime <DateTime>]
[-Subject <String>]
[-Transcripts <IMicrosoftGraphCallTranscript[]>]
[-VideoTeleconferenceId <String>]
[-WatermarkProtection <IMicrosoftGraphWatermarkProtectionValues>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Update-MgBetaUserOnlineMeeting
-InputObject <ICloudCommunicationsIdentity>
-BodyParameter <IMicrosoftGraphOnlineMeeting>
[-ResponseHeadersVariable <String>]
[-Headers <IDictionary>]
[-ProgressAction <ActionPreference>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
Description
Update the navigation property onlineMeetings in users
Examples
Example 1: Code snippet
Import-Module Microsoft.Graph.Beta.CloudCommunications
$params = @{
startDateTime = [System.DateTime]::Parse("2020-09-09T14:33:30.8546353-07:00")
endDateTime = [System.DateTime]::Parse("2020-09-09T15:03:30.8566356-07:00")
subject = "Patch Meeting Subject"
}
# A UPN can also be used as -UserId.
Update-MgBetaUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params
This example shows how to use the Update-MgBetaUserOnlineMeeting Cmdlet.
To learn about permissions for this resource, see the permissions reference.
Example 2: Code snippet
Import-Module Microsoft.Graph.Beta.CloudCommunications
$params = @{
lobbyBypassSettings = @{
isDialInBypassEnabled = $true
}
}
# A UPN can also be used as -UserId.
Update-MgBetaUserOnlineMeeting -UserId $userId -OnlineMeetingId $onlineMeetingId -BodyParameter $params
This example shows how to use the Update-MgBetaUserOnlineMeeting Cmdlet.
To learn about permissions for this resource, see the permissions reference.
Parameters
-AdditionalProperties
Additional Parameters
Type: | Hashtable |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AiInsights
. To construct, see NOTES section for AIINSIGHTS properties and create a hash table.
Type: | IMicrosoftGraphCallAiInsight[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowAttendeeToEnableCamera
Indicates whether attendees can turn on their camera.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowAttendeeToEnableMic
Indicates whether attendees can turn on their microphone.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowBreakoutRooms
Indicates whether breakout rooms are enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowedPresenters
onlineMeetingPresenters
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowLiveShare
meetingLiveShareOptions
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowMeetingChat
meetingChatMode
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowParticipantsToChangeName
Specifies if participants are allowed to rename themselves in an instance of the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowPowerPointSharing
Indicates whether PowerPoint live is enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowRecording
Indicates whether recording is enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowTeamworkReactions
Indicates if Teams reactions are enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowTranscription
Indicates whether transcription is enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AllowWhiteboard
Indicates whether whiteboard is enabled for the meeting.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AlternativeRecordingInputFile
Input File for AlternativeRecording (The content stream of the alternative recording of a Microsoft Teams live event. Read-only.)
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AnonymizeIdentityForRoles
Specifies whose identity is anonymized in the meeting. Possible values are: attendee. The attendee value can't be removed through a PATCH operation once added.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AttendanceReports
The attendance reports of an online meeting. Read-only. To construct, see NOTES section for ATTENDANCEREPORTS properties and create a hash table.
Type: | IMicrosoftGraphMeetingAttendanceReport[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AttendeeReportInputFile
Input File for AttendeeReport (The content stream of the attendee report of a Teams live event. Read-only.)
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-AudioConferencing
audioConferencing To construct, see NOTES section for AUDIOCONFERENCING properties and create a hash table.
Type: | IMicrosoftGraphAudioConferencing |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-BodyParameter
onlineMeeting To construct, see NOTES section for BODYPARAMETER properties and create a hash table.
Type: | IMicrosoftGraphOnlineMeeting |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-BroadcastRecordingInputFile
Input File for BroadcastRecording (.)
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-BroadcastSettings
broadcastMeetingSettings To construct, see NOTES section for BROADCASTSETTINGS properties and create a hash table.
Type: | IMicrosoftGraphBroadcastMeetingSettings |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Capabilities
The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.
Type: | String[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ChatInfo
chatInfo To construct, see NOTES section for CHATINFO properties and create a hash table.
Type: | IMicrosoftGraphChatInfo |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ChatRestrictions
chatRestrictions To construct, see NOTES section for CHATRESTRICTIONS properties and create a hash table.
Type: | IMicrosoftGraphChatRestrictions |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Confirm
Prompts you for confirmation before running the cmdlet.
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-CreationDateTime
The meeting creation time in UTC. Read-only.
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-EndDateTime
The meeting end time in UTC. Required when you create an online meeting.
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ExternalId
The external ID. A custom ID. Optional.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Headers
Optional headers that will be added to the request.
Type: | IDictionary |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Id
The unique identifier for an entity. Read-only.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-InputObject
Identity Parameter To construct, see NOTES section for INPUTOBJECT properties and create a hash table.
Type: | ICloudCommunicationsIdentity |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-IsBroadcast
Indicates whether this event is a Teams live event.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-IsEndToEndEncryptionEnabled
.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-IsEntryExitAnnounced
Indicates whether to announce when callers join or leave.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JoinInformation
itemBody To construct, see NOTES section for JOININFORMATION properties and create a hash table.
Type: | IMicrosoftGraphItemBody |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JoinMeetingIdSettings
joinMeetingIdSettings To construct, see NOTES section for JOINMEETINGIDSETTINGS properties and create a hash table.
Type: | IMicrosoftGraphJoinMeetingIdSettings |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JoinUrl
.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-JoinWebUrl
The join URL of the online meeting. Read-only.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-LobbyBypassSettings
lobbyBypassSettings To construct, see NOTES section for LOBBYBYPASSSETTINGS properties and create a hash table.
Type: | IMicrosoftGraphLobbyBypassSettings |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MeetingAttendanceReport
meetingAttendanceReport To construct, see NOTES section for MEETINGATTENDANCEREPORT properties and create a hash table.
Type: | IMicrosoftGraphMeetingAttendanceReport |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-MeetingTemplateId
The ID of the meeting template.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-OnlineMeetingId
The unique identifier of onlineMeeting
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Participants
meetingParticipants To construct, see NOTES section for PARTICIPANTS properties and create a hash table.
Type: | IMicrosoftGraphMeetingParticipants |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ProgressAction
{{ Fill ProgressAction Description }}
Type: | ActionPreference |
Aliases: | proga |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RecordAutomatically
Indicates whether to record the meeting automatically.
Type: | SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-RecordingInputFile
Input File for Recording (The content stream of the recording of a Teams live event. Read-only.)
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Recordings
The recordings of an online meeting. Read-only. To construct, see NOTES section for RECORDINGS properties and create a hash table.
Type: | IMicrosoftGraphCallRecording[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Registration
meetingRegistration To construct, see NOTES section for REGISTRATION properties and create a hash table.
Type: | IMicrosoftGraphMeetingRegistration |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ResponseHeadersVariable
Optional Response Headers Variable.
Type: | String |
Aliases: | RHV |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ShareMeetingChatHistoryDefault
meetingChatHistoryDefaultMode
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-StartDateTime
The meeting start time in UTC. Required when you create an online meeting.
Type: | DateTime |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Subject
The subject of the online meeting.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-Transcripts
The transcripts of an online meeting. Read-only. To construct, see NOTES section for TRANSCRIPTS properties and create a hash table.
Type: | IMicrosoftGraphCallTranscript[] |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-UserId
The unique identifier of user
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-VideoTeleconferenceId
The video teleconferencing ID. Read-only.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WatermarkProtection
watermarkProtectionValues To construct, see NOTES section for WATERMARKPROTECTION properties and create a hash table.
Type: | IMicrosoftGraphWatermarkProtectionValues |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-WhatIf
Shows what would happen if the cmdlet runs. The cmdlet is not run.
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
Microsoft.Graph.Beta.PowerShell.Models.ICloudCommunicationsIdentity
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphOnlineMeeting
System.Collections.IDictionary
Outputs
Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphOnlineMeeting
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.
AIINSIGHTS <IMicrosoftGraphCallAiInsight- []
>: .
[Id <String>]
: The unique identifier for an entity. Read-only.[ActionItems <IMicrosoftGraphActionItem-
[]>]
:[OwnerDisplayName <String>]
:[Text <String>]
:[Title <String>]
:
[CallId <String>]
:[ContentCorrelationId <String>]
:[CreatedDateTime <DateTime?>]
:[EndDateTime <DateTime?>]
:[MeetingNotes <IMicrosoftGraphMeetingNote-
[]>]
:[Subpoints <IMicrosoftGraphMeetingNoteSubpoint-
[]>]
:[Text <String>]
:[Title <String>]
:
[Text <String>]
:[Title <String>]
:
[Viewpoint <IMicrosoftGraphCallAiInsightViewPoint>]
: callAiInsightViewPoint[(Any) <Object>]
: This indicates any property can be added to this object.[MentionEvents <IMicrosoftGraphMentionEvent-
[]>]
:[EventDateTime <DateTime?>]
:[Speaker <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
[TranscriptUtterance <String>]
:
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.[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)[Role <String>]
: Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.[TotalAttendanceInSeconds <Int32?>]
: Total duration of the attendances in seconds.
[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.[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.[AllowedPresenters <String>]
: onlineMeetingPresenters[AnonymizeIdentityForRoles <String-
[]>]
: Specifies whose identity is anonymized in the meeting. 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.[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)[Role <String>]
: Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.[TotalAttendanceInSeconds <Int32?>]
: Total duration of the attendances in seconds.
[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.
[IsEndToEndEncryptionEnabled <Boolean?>]
:[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.[AiInsights <IMicrosoftGraphCallAiInsight-
[]>]
:[Id <String>]
: The unique identifier for an entity. Read-only.[ActionItems <IMicrosoftGraphActionItem-
[]>]
:[OwnerDisplayName <String>]
:[Text <String>]
:[Title <String>]
:
[CallId <String>]
:[ContentCorrelationId <String>]
:[CreatedDateTime <DateTime?>]
:[EndDateTime <DateTime?>]
:[MeetingNotes <IMicrosoftGraphMeetingNote-
[]>]
:[Subpoints <IMicrosoftGraphMeetingNoteSubpoint-
[]>]
:[Text <String>]
:[Title <String>]
:
[Text <String>]
:[Title <String>]
:
[Viewpoint <IMicrosoftGraphCallAiInsightViewPoint>]
: callAiInsightViewPoint[(Any) <Object>]
: This indicates any property can be added to this object.[MentionEvents <IMicrosoftGraphMentionEvent-
[]>]
:[EventDateTime <DateTime?>]
:[Speaker <IMicrosoftGraphIdentitySet>]
: identitySet[(Any) <Object>]
: This indicates any property can be added to this object.[Application <IMicrosoftGraphIdentity>]
: identity[Device <IMicrosoftGraphIdentity>]
: identity[User <IMicrosoftGraphIdentity>]
: identity
[TranscriptUtterance <String>]
:
[AlternativeRecording <Byte-
[]>]
: The content stream of the alternative recording of a Microsoft Teams live event. Read-only.[AttendeeReport <Byte-
[]>]
: The content stream of the attendee report of a Teams live event. Read-only.[BroadcastRecording <Byte-
[]>]
:[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.
[Capabilities <String-
[]>]
: The list of meeting capabilities. Possible values are: questionAndAnswer,unknownFutureValue.[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. A custom ID. Optional.[IsBroadcast <Boolean?>]
: Indicates whether this event is a Teams live event.[JoinUrl <String>]
:[MeetingAttendanceReport <IMicrosoftGraphMeetingAttendanceReport>]
: meetingAttendanceReport[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 of the meeting attendees.[Identity <IMicrosoftGraphIdentitySet>]
: identitySet[Role <String>]
: onlineMeetingRole[Upn <String>]
: User principal name of the participant.
[Contributors <IMicrosoftGraphMeetingParticipantInfo-
[]>]
: For broadcast meeting only.[Organizer <IMicrosoftGraphMeetingParticipantInfo>]
: meetingParticipantInfo[Producers <IMicrosoftGraphMeetingParticipantInfo-
[]>]
: For broadcast meeting only.
[Recording <Byte-
[]>]
: The content stream of the recording of a Teams live event. Read-only.[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.
[Registration <IMicrosoftGraphMeetingRegistration>]
: meetingRegistration[(Any) <Object>]
: This indicates any property can be added to this object.[AllowedRegistrant <String>]
: meetingAudience[Registrants <IMicrosoftGraphMeetingRegistrantBase-
[]>]
: Registrants of the online meeting.[Id <String>]
: The unique identifier for an entity. Read-only.[JoinWebUrl <String>]
: A unique web URL for the registrant to join the meeting. Read-only.
[Id <String>]
: The unique identifier for an entity. Read-only.[CustomQuestions <IMicrosoftGraphMeetingRegistrationQuestion-
[]>]
: Custom registration questions.[Id <String>]
: The unique identifier for an entity. Read-only.[AnswerInputType <String>]
: answerInputType[AnswerOptions <String-
[]>]
: Answer options when answerInputType is radioButton.[DisplayName <String>]
: Display name of the custom registration question.[IsRequired <Boolean?>]
: Indicates whether the question is required. Default value is false.
[Description <String>]
: The description of the meeting.[EndDateTime <DateTime?>]
: The meeting end time in UTC.[RegistrationPageViewCount <Int32?>]
: The number of times the registration page has been visited. Read-only.[RegistrationPageWebUrl <String>]
: The URL of the registration page. Read-only.[Speakers <IMicrosoftGraphMeetingSpeaker-
[]>]
: The meeting speaker's information.[Bio <String>]
: Bio of the speaker.[DisplayName <String>]
: Display name of the speaker.
[StartDateTime <DateTime?>]
: The meeting start time in UTC.[Subject <String>]
: The subject of the meeting.
[StartDateTime <DateTime?>]
: The meeting start time in UTC. Required when you create an online meeting.[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 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.
INPUTOBJECT <ICloudCommunicationsIdentity>
: Identity Parameter
[AttendanceRecordId <String>]
: The unique identifier of attendanceRecord[AudioRoutingGroupId <String>]
: The unique identifier of audioRoutingGroup[CallAiInsightId <String>]
: The unique identifier of callAiInsight[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[FromDateTime <DateTime?>]
: Usage: fromDateTime={fromDateTime}[JoinWebUrl <String>]
: Alternate key of onlineMeeting[MeetingAttendanceReportId <String>]
: The unique identifier of meetingAttendanceReport[MeetingRegistrantBaseId <String>]
: The unique identifier of meetingRegistrantBase[MeetingRegistrationQuestionId <String>]
: The unique identifier of meetingRegistrationQuestion[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[ToDateTime <DateTime?>]
: Usage: toDateTime={toDateTime}[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
MEETINGATTENDANCEREPORT <IMicrosoftGraphMeetingAttendanceReport>
: meetingAttendanceReport
[(Any) <Object>]
: This indicates any property can be added to this object.[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.[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)[Role <String>]
: Role of the attendee. Possible values are: None, Attendee, Presenter, and Organizer.[TotalAttendanceInSeconds <Int32?>]
: Total duration of the attendances in seconds.
[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.
PARTICIPANTS <IMicrosoftGraphMeetingParticipants>
: meetingParticipants
[(Any) <Object>]
: This indicates any property can be added to this object.[Attendees <IMicrosoftGraphMeetingParticipantInfo-
[]>]
: Information of 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.
[Contributors <IMicrosoftGraphMeetingParticipantInfo-
[]>]
: For broadcast meeting only.[Organizer <IMicrosoftGraphMeetingParticipantInfo>]
: meetingParticipantInfo[Producers <IMicrosoftGraphMeetingParticipantInfo-
[]>]
: For broadcast meeting only.
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.
REGISTRATION <IMicrosoftGraphMeetingRegistration>
: meetingRegistration
[(Any) <Object>]
: This indicates any property can be added to this object.[AllowedRegistrant <String>]
: meetingAudience[Registrants <IMicrosoftGraphMeetingRegistrantBase-
[]>]
: Registrants of the online meeting.[Id <String>]
: The unique identifier for an entity. Read-only.[JoinWebUrl <String>]
: A unique web URL for the registrant to join the meeting. Read-only.
[Id <String>]
: The unique identifier for an entity. Read-only.[CustomQuestions <IMicrosoftGraphMeetingRegistrationQuestion-
[]>]
: Custom registration questions.[Id <String>]
: The unique identifier for an entity. Read-only.[AnswerInputType <String>]
: answerInputType[AnswerOptions <String-
[]>]
: Answer options when answerInputType is radioButton.[DisplayName <String>]
: Display name of the custom registration question.[IsRequired <Boolean?>]
: Indicates whether the question is required. Default value is false.
[Description <String>]
: The description of the meeting.[EndDateTime <DateTime?>]
: The meeting end time in UTC.[RegistrationPageViewCount <Int32?>]
: The number of times the registration page has been visited. Read-only.[RegistrationPageWebUrl <String>]
: The URL of the registration page. Read-only.[Speakers <IMicrosoftGraphMeetingSpeaker-
[]>]
: The meeting speaker's information.[Bio <String>]
: Bio of the speaker.[DisplayName <String>]
: Display name of the speaker.
[StartDateTime <DateTime?>]
: The meeting start time in UTC.[Subject <String>]
: The subject of the meeting.
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.