Skip to content

Commit a296bb4

Browse files
authored
Update calling-chat.md
1 parent 5009ea7 commit a296bb4

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/communication-services/concepts/interop/calling-chat.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ With the Calling SDK, a Communication Services user or endpoint can start a 1:1
3535

3636
[Manage calls - An Azure Communication Services how-to guide | Microsoft Docs](../../how-tos/calling-sdk/manage-calls.md?pivots=platform-web)
3737

38-
Calling another ACS user:
38+
Calling another Communication Services endpoint using [communicationUserId](/javascript/api/@azure/communication-common/communicationuseridentifier?view=azure-node-latest#communicationUserId):
3939
```js
40-
const acsCallee = { communicationUserId: '<ACS_USER_ID>' }
40+
const acsCallee = { communicationUserId: '<ACS User ID>' }
4141
const call = callAgent.startCall([acsCallee]);
4242
```
4343

44-
Calling a Teams user:
44+
Calling a Teams user using [microsoftTeamsUserId](/javascript/api/@azure/communication-common/microsoftteamsuseridentifier?view=azure-node-latest#microsoftTeamsUserId):
4545
```js
46-
const teamsCallee = { microsoftTeamsUserId: '<Teams User AAD Object ID>' }
46+
const teamsCallee = { microsoftTeamsUserId: '8:orgid:<Teams User AAD Object ID>' }
4747
const call = callAgent.startCall([teamsCallee]);
4848
```
4949

0 commit comments

Comments
 (0)