Skip to content

Commit 0b458bd

Browse files
authored
Update teams-phone-extensibility-quickstart.md
removing the extra "4:"
1 parent 0f6640a commit 0b458bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/communication-services/quickstarts/tpe/teams-phone-extensibility-quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ The following example shows a request to add a PSTN user to a Teams Phone extens
457457
//Call is already established
458458
...
459459
...
460-
var target = new PhoneNumberIdentifier("4:+12065551212");
460+
var target = new PhoneNumberIdentifier("+12065551212");
461461
await callConnection.AddParticipantAsync(new AddParticipantOptions(new CallInvite(target, null))
462462
{
463463
InvitationTimeoutInSeconds = 60,
@@ -477,7 +477,7 @@ The following example shows a request to transfer an established call to a PSTN
477477
//Call is already established
478478
...
479479
...
480-
var target = new PhoneNumberIdentifier("4:+12065551212");
480+
var target = new PhoneNumberIdentifier("+12065551212");
481481
await callConnection.TransferCallToParticipantAsync(new TransferToParticipantOptions(target)
482482
{
483483
OperationContext = "transferParticipantAsync"

0 commit comments

Comments
 (0)