Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 556 Bytes

participant-invite-2-powershell-snippets.md

File metadata and controls

27 lines (22 loc) · 556 Bytes
description
Automatically generated file. DO NOT MODIFY
Import-Module Microsoft.Graph.CloudCommunications

$params = @{
	participants = @(
		@{
			"@odata.type" = "#microsoft.graph.invitationParticipantInfo"
			identity = @{
				"@odata.type" = "#microsoft.graph.identitySet"
				phone = @{
					"@odata.type" = "#microsoft.graph.identity"
					id = "+12345678901"
				}
			}
		}
	)
	clientContext = "f2fa86af-3c51-4bc2-8fc0-475452d9764f"
}

Invoke-MgInviteCommunicationCallParticipant -CallId $callId -BodyParameter $params