Skip to content

Latest commit

 

History

History
59 lines (49 loc) · 2.31 KB

invitationparticipantinfo.md

File metadata and controls

59 lines (49 loc) · 2.31 KB
title description author ms.localizationpriority ms.subservice doc_type
invitationParticipantInfo resource type
The **InvitationParticipant** is used to represent a set of identities associated with a conversation invitation, and provides additional invitation parameters.
ananmishr
medium
cloud-communications
resourcePageType

invitationParticipantInfo resource type

Namespace: microsoft.graph

This resource is used to represent the entity that is being invited to a group call.

Properties

Property Type Description
hidden Boolean Optional. Whether to hide the participant from the roster.
identity identitySet The identitySet associated with this invitation.
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.

JSON representation

The following JSON representation shows the resource type.

{
  "identity": {"@odata.type": "#microsoft.graph.identitySet"},
  "participantId": "String",  
  "replacesCallId": "String",
  "removeFromDefaultAudioRoutingGroup": "Boolean",
  "hidden": "Boolean"
}