Skip to content

Commit c4f2687

Browse files
authored
Merge pull request #264256 from jamescadd/acs-calling-interop-update
Interop calling update
2 parents 2f78740 + e5f4bb0 commit c4f2687

File tree

2 files changed

+9
-46
lines changed

2 files changed

+9
-46
lines changed
Lines changed: 8 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: Teams calling and chat interoperability
2+
title: Teams calling interoperability
33
titleSuffix: An Azure Communication Services concept document
4-
description: Teams calling and chat interoperability
4+
description: Teams calling interoperability
55
author: tomaschladek
66
ms.author: tchladek
77
ms.date: 10/15/2021
@@ -10,23 +10,18 @@ ms.service: azure-communication-services
1010
ms.subservice: teams-interop
1111
---
1212

13-
# Teams Interoperability: Calling and chat
13+
# Teams Interoperability: Calling
1414

15-
> [!IMPORTANT]
16-
> Calling and chat interoperability is in private preview and restricted to a limited number of Azure Communication Services early adopters. You can [submit this form to request participation in the preview](https://forms.office.com/r/F3WLqPjw0D), and we'll review your scenario(s) and evaluate your participation in the preview.
17-
>
18-
> Private Preview APIs and SDKs are provided without a service-level agreement, aren't appropriate for production workloads, and should only be used with test users and data. Certain features may not be supported or have constrained capabilities. For more information, see [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/).
19-
>
20-
> For support, questions, or to provide feedback or report issues, please use the [Teams interop ad hoc calling and chat channel](https://teams.microsoft.com/l/channel/19%3abfc7d5e0b883455e80c9509e60f908fb%40thread.tacv2/Teams%2520Interop%2520ad%2520hoc%2520calling%2520and%2520chat?groupId=d78f76f3-4229-4262-abfb-172587b7a6bb&tenantId=72f988bf-86f1-41af-91ab-2d7cd011db47). You must be a member of the Azure Communication Service TAP team.
15+
[!INCLUDE [Public Preview](../../../communication-services/includes/public-preview-include-document.md)]
2116

22-
As part of this preview, the Azure Communication Services SDKs can be used to build applications that enable bring your own identity (BYOI) users to start 1:1 calls or 1:n chats with Teams users. [Standard Azure Communication Services pricing](https://azure.microsoft.com/pricing/details/communication-services/) applies to these users, but there's no extra fee for the interoperability capability. Custom applications built with Azure Communication Services to connect and communicate with Teams users or Teams voice applications can be used by end users or by bots, and there's no differentiation in how they appear to Teams users in Teams applications unless explicitly indicated by the developer of the application with a display name.
17+
As part of this preview, the Azure Communication Services SDKs can be used to build applications that enable bring your own identity (BYOI) users to start 1:1 calls with Teams users. [Standard Azure Communication Services pricing](https://azure.microsoft.com/pricing/details/communication-services/) applies to these users, but there's no extra fee for the interoperability capability. Custom applications built with Azure Communication Services to connect and communicate with Teams users or Teams voice applications can be used by end users or by bots, and there's no differentiation in how they appear to Teams users in Teams applications unless explicitly indicated by the developer of the application with a display name.
2318

24-
To enable calling and chat between your Communication Services users and Teams tenant, allow your tenant via the [form](https://forms.office.com/r/F3WLqPjw0D) and enable the connection between the tenant and Communication Services resource.
19+
To enable calling between your Communication Services users and Teams tenant, allow your tenant via the [form](https://forms.office.com/r/F3WLqPjw0D) and enable the connection between the tenant and Communication Services resource.
2520

2621
[!INCLUDE [Enable interoperability in your Teams tenant](./../includes/enable-interoperability-for-teams-tenant.md)]
2722
## Get Teams user ID
2823

29-
To start a call or chat with a Teams user or Teams Voice application, you need an identifier of the target. You have the following options to retrieve the ID:
24+
To start a call with a Teams user or Teams Voice application, you need an identifier of the target. You have the following options to retrieve the ID:
3025
- User interface of [Microsoft Entra ID](../troubleshooting-info.md?#getting-user-id) or with on-premises directory synchronization [Microsoft Entra Connect](../../../active-directory/hybrid/how-to-connect-sync-whatis.md)
3126
- Programmatically via [Microsoft Graph API](/graph/api/resources/users)
3227

@@ -60,39 +55,7 @@ const call = callAgent.startCall([teamsCallee]);
6055
- Many features in the Teams client don't work as expected during 1:1 calls with Communication Services users.
6156
- Third-party [devices for Teams](/MicrosoftTeams/devices/teams-ip-phones) and [Skype IP phones](/skypeforbusiness/certification/devices-ip-phones) aren't supported.
6257

63-
## Chat
64-
With the Chat SDK, Communication Services users or endpoints can have group chats with Teams users, identified by their Microsoft Entra object ID. You can easily modify an existing application that creates chats with other Communication Services users to create chats with Teams users instead. Here is an example of how to use the Chat SDK to add Teams users as participants. To learn how to use Chat SDK to send a message, manage participants, and more, see our [quickstart](../../quickstarts/chat/get-started.md?pivots=programming-language-javascript).
65-
66-
Creating a chat with a Teams user:
67-
```js
68-
async function createChatThread() {
69-
const createChatThreadRequest = { topic: "Hello, World!" };
70-
const createChatThreadOptions = {
71-
participants: [ {
72-
id: { microsoftTeamsUserId: '<Teams User AAD Object ID>' },
73-
displayName: '<USER_DISPLAY_NAME>' }
74-
] };
75-
const createChatThreadResult = await chatClient.createChatThread(
76-
createChatThreadRequest, createChatThreadOptions );
77-
const threadId = createChatThreadResult.chatThread.id; return threadId; }
78-
```
79-
80-
To make testing easier, we've published a sample app [here](https://github.com/Azure-Samples/communication-services-web-chat-hero/tree/teams-interop-chat-adhoc). Update the app with your Communication Services resource, and interop enabled Teams tenant to get started.
81-
82-
**Limitations and known issues** </br>
83-
While in private preview, a Communication Services user can do various actions using the Communication Services Chat SDK, including sending and receiving plain and rich text messages, typing indicators, read receipts, real-time notifications, and more. However, most of the Teams chat features aren't supported. Here are some key behaviors and known issues:
84-
- Communication Services users can only initiate chats.
85-
- Communication Services users can't send images, or files to the Teams user. But they can receive images and files from the Teams user. Links to files and images can also be shared.
86-
- Communication Services users can delete the chat. This action removes the Teams user from the chat thread and hides the message history from the Teams client.
87-
- Known issue: Communication Services users aren't displayed correctly in the participant list. They're currently displayed as External, but their people cards show inconsistent data. In addition, their displayname might not be shown properly in the Teams client.
88-
- Known issue: The typing event from Teams side might contain a blank display name.
89-
- Known issue: Read receipts aren't supported for Teams users.
90-
- Known issue: A chat can't be escalated to a call from within the Teams app.
91-
- Known issue: Editing of messages by the Teams user isn't supported.
92-
93-
Please refer to [Chat Capabilities](../interop/guest/capabilities.md) to learn more.
94-
9558
## Privacy
96-
Interoperability between Azure Communication Services and Microsoft Teams enables your applications and users to participate in Teams calls, meetings, and chats. It is your responsibility to ensure that the users of your application are notified when recording or transcription are enabled in a Teams call or meeting.
59+
Interoperability between Azure Communication Services and Microsoft Teams enables your applications and users to participate in Teams calls and meetings. It is your responsibility to ensure that the users of your application are notified when recording or transcription are enabled in a Teams call or meeting.
9760

9861
Microsoft will indicate via the Azure Communication Services API that recording or transcription has commenced. You must communicate this fact in real time to your users within your application's user interface. You agree to indemnify Microsoft for all costs and damages incurred due to your failure to comply with this obligation.

articles/communication-services/tutorials/calling-widget/calling-widget-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Following this tutorial will:
3737
- [Visual Studio Code](https://code.visualstudio.com/) on one of the [supported platforms](https://code.visualstudio.com/docs/supporting/requirements#_platforms).
3838
- [Node.js](https://nodejs.org/), Active LTS and Maintenance LTS versions [Node 18 LTS](https://nodejs.org/en) is recommended. Use the `node --version` command to check your version.
3939
- An Azure Communication Services resource. [Create a Communications Resource](../../quickstarts/create-communication-resource.md)
40-
- Complete the Teams tenant setup in [Teams calling and chat interoperability](../../concepts/interop/calling-chat.md)
40+
- Complete the Teams tenant setup in [Teams Call Queues](../../quickstarts/voice-video-calling/get-started-teams-call-queue.md)
4141
- Working with [Teams Call Queues](../../quickstarts/voice-video-calling/get-started-teams-call-queue.md) and Azure Communication Services.
4242
- Working with [Teams Auto Attendants](../../quickstarts/voice-video-calling/get-started-teams-auto-attendant.md) and Azure Communication Services.
4343

0 commit comments

Comments
 (0)