1- ### Example 1: Code snippet
1+ ### Example 1: Call transfer from a peer-to-peer call
22
33``` powershell
44
@@ -19,9 +19,9 @@ $params = @{
1919Move-MgCommunicationCall -CallId $callId -BodyParameter $params
2020
2121```
22- This example shows how to use the Move-MgCommunicationCall Cmdlet.
22+ This example will call transfer from a peer-to-peer call
2323
24- ### Example 2: Code snippet
24+ ### Example 2: Consultative transfer from a peer-to-peer call
2525
2626``` powershell
2727
@@ -46,9 +46,35 @@ $params = @{
4646Move-MgCommunicationCall -CallId $callId -BodyParameter $params
4747
4848```
49- This example shows how to use the Move-MgCommunicationCall Cmdlet.
49+ This example will consultative transfer from a peer-to-peer call
5050
51- ### Example 3: Code snippet
51+ ### Example 3: Call transfer from a peer-to-peer call to PSTN number
52+
53+ ``` powershell
54+
55+ Import-Module Microsoft.Graph.CloudCommunications
56+
57+ $params = @{
58+ transferTarget = @{
59+ endpointType = "default"
60+ identity = @{
61+ phone = @{
62+ "@odata.type" = "#microsoft.graph.identity"
63+ id = "+12345678901"
64+ }
65+ }
66+ languageId = "languageId-value"
67+ region = "region-value"
68+ }
69+ clientContext = "9e90d1c1-f61e-43e7-9f75-d420159aae08"
70+ }
71+
72+ Move-MgCommunicationCall -CallId $callId -BodyParameter $params
73+
74+ ```
75+ This example will call transfer from a peer-to-peer call to pstn number
76+
77+ ### Example 4: Consultative transfer from a peer-to-peer call to PSTN number
5278
5379``` powershell
5480
@@ -75,9 +101,9 @@ $params = @{
75101Move-MgCommunicationCall -CallId $callId -BodyParameter $params
76102
77103```
78- This example shows how to use the Move-MgCommunicationCall Cmdlet.
104+ This example will consultative transfer from a peer-to-peer call to pstn number
79105
80- ### Example 4: Code snippet
106+ ### Example 5: Call transfer from a group call
81107
82108``` powershell
83109
@@ -107,5 +133,5 @@ $params = @{
107133Move-MgCommunicationCall -CallId $callId -BodyParameter $params
108134
109135```
110- This example shows how to use the Move-MgCommunicationCall Cmdlet.
136+ This example will call transfer from a group call
111137
0 commit comments