Microsoft Graph · Schema
invitationParticipantInfo
Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
Properties
| Name | Type | Description |
|---|---|---|
| hidden | boolean | Optional. Whether to hide the participant from the roster. |
| identity | object | |
| participantId | string | Optional. The ID of the target participant. |
| removeFromDefaultAudioRoutingGroup | boolean | Optional. Whether to remove them from the main mixer. |
| replacesCallId | string | Optional. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully. |
| @odata.type | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/microsoft.graph.invitationParticipantInfo",
"title": "invitationParticipantInfo",
"required": [
"@odata.type"
],
"type": "object",
"properties": {
"hidden": {
"type": "boolean",
"description": "Optional. Whether to hide the participant from the roster.",
"nullable": true
},
"identity": {
"$ref": "#/components/schemas/microsoft.graph.identitySet"
},
"participantId": {
"type": "string",
"description": "Optional. The ID of the target participant.",
"nullable": true
},
"removeFromDefaultAudioRoutingGroup": {
"type": "boolean",
"description": "Optional. Whether to remove them from the main mixer.",
"nullable": true
},
"replacesCallId": {
"type": "string",
"description": "Optional. The call which the target identity is currently a part of. For peer-to-peer case, the call will be dropped once the participant is added successfully.",
"nullable": true
},
"@odata.type": {
"type": "string"
}
}
}