You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
String callbackUri ="https://<myendpoint>/Events"; //the callback endpoint where you want to receive subsequent events
76
-
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+18001234567"); // This is the ACS provisioned phone number for the caller
76
+
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+18001234567"); // This is the Azure Communication Services provisioned phone number for the caller
77
77
CallInvite callInvite =newCallInvite(newPhoneNumberIdentifier("+16471234567"), callerIdNumber); // person to call
String callbackUri ="https://<myendpoint>/Events"; //the callback endpoint where you want to receive subsequent events
126
-
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+18001234567"); // This is the ACS provisioned phone number for the caller
126
+
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+18001234567"); // This is the Azure Communication Services provisioned phone number for the caller
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
323
+
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+16044561234"); // This is the ACS provisioned phone number for the caller
408
+
PhoneNumberIdentifier callerIdNumber =newPhoneNumberIdentifier("+16044561234"); // This is the Azure Communication Services provisioned phone number for the caller
When your application no longer wishes to receive DTMF tones from the participant anymore, you can use the `StopContinuousDtmfRecognitionAsync` method to let ACS know to stop detecting DTMF tones.
201
+
When your application no longer wishes to receive DTMF tones from the participant anymore, you can use the `StopContinuousDtmfRecognitionAsync` method to let Azure Communication Services know to stop detecting DTMF tones.
202
202
203
203
### StopContinuousDtmfRecognitionAsync
204
204
Stop detecting DTMF tones sent by participant.
@@ -279,7 +279,7 @@ if event.type == "Microsoft.Communication.ContinuousDtmfRecognitionToneReceived"
279
279
```
280
280
-----
281
281
282
-
ACS provides you with a `SequenceId` as part of the `ContinuousDtmfRecognitionToneReceived` event, which your application can use to reconstruct the order in which the participant entered the DTMF tones.
282
+
Azure Communication Services provides you with a `SequenceId` as part of the `ContinuousDtmfRecognitionToneReceived` event, which your application can use to reconstruct the order in which the participant entered the DTMF tones.
283
283
284
284
### ContinuousDtmfRecognitionFailed Event
285
285
Example of how you can handle when DTMF tone detection fails.
With Azure Communication Services Call Automation SDK, developers can now mute participants through server based API requests. This feature can be useful when you want your application to mute participants after they've joined the meeting to avoid any interruptions or distractions to ongoing meetings.
23
23
24
-
If you’re interested in abilities to allow participants to mute/unmute themselves on the call when they’ve joined with ACS Client Libraries, you can use our [mute/unmute function](../../../communication-services/how-tos/calling-sdk/manage-calls.md) provided through our Calling Library.
24
+
If you’re interested in abilities to allow participants to mute/unmute themselves on the call when they’ve joined with Azure Communication Services Client Libraries, you can use our [mute/unmute function](../../../communication-services/how-tos/calling-sdk/manage-calls.md) provided through our Calling Library.
> Call transcription state is only available from Teams meetings. Currently there's no support for call transcription state for ACS to ACS calls.
20
+
> Call transcription state is only available from Teams meetings. Currently there's no support for call transcription state for Azure Communication Services to Azure Communication Services calls.
21
21
22
22
When using call transcription you may want to let your users know that a call is being transcribe. Here's how.
#Customer intent: As a developer, I want to manage calls with the acs sdks so that I can create a calling application that manages calls.
14
+
#Customer intent: As a developer, I want to manage calls with the Azure Communication Services sdks so that I can create a calling application that manages calls.
#Customer intent: As a developer, I want to manage video calls with the acs sdks so that I can create a calling application that provides video capabilities.
14
+
#Customer intent: As a developer, I want to manage video calls with the Azure Communication Services sdks so that I can create a calling application that provides video capabilities.
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/push-notifications.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ ms.date: 08/10/2021
11
11
ms.custom: template-how-to
12
12
zone_pivot_groups: acs-plat-web-ios-android
13
13
14
-
#Customer intent: As a developer, I want to enable push notifications with the acs sdks so that I can create a calling application that provides push notifications to its users.
14
+
#Customer intent: As a developer, I want to enable push notifications with the Azure Communication Services sdks so that I can create a calling application that provides push notifications to its users.
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/telephony/domain-validation.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@ To use direct routing in Azure Communication Services, you need to validate that
23
23
When you're verifying the ownership of the SBC FQDN, keep in mind that the `*.onmicrosoft.com` and `*.azure.com` domain names aren't supported. For example, if you have two domain names, `contoso.com` and `contoso.onmicrosoft.com`, use `sbc.contoso.com` as the SBC name.
24
24
25
25
Validating domain part makes sense if you plan to add multiple SBCs from the same domain name space. For example if you're using `sbc-eu.contoso.com`, `sbc-us.contoso.com`, and `sbc-af.contoso.com` you can validate `contoso.com` domain once and add SBCs from that domain later without extra validation.
26
-
Validating entire FQDN is helpful if you're a service provider and don't want to validate your base domain ownership with every customer. For example if you're running SBCs `customer1.acs.adatum.biz`, `customer2.acs.adatum.biz`, and `customer3.acs.adatum.biz`, you don't need to validate `acs.adatum.biz` for every Communication resource, instead you validate the entire FQDN each time. This option provides more granular security approach.
26
+
Validating entire FQDN is helpful if you're a service provider and don't want to validate your base domain ownership with every customer. For example if you're running SBCs `customer1.Azure Communication Services.adatum.biz`, `customer2.Azure Communication Services.adatum.biz`, and `customer3.Azure Communication Services.adatum.biz`, you don't need to validate `acs.adatum.biz` for every Communication resource, instead you validate the entire FQDN each time. This option provides more granular security approach.
Copy file name to clipboardExpand all lines: articles/communication-services/quickstarts/chat/quickstart-botframework-integration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -153,7 +153,7 @@ When you have a Communication Services resource, you can set up a Communication
153
153
154
154
:::image type="content" source="./media/smaller-bot-choose-resource.png" alt-text="Screenshot that shows how to save the selected Communication Service resource to create a new Communication Services user ID." lightbox="./media/bot-choose-resource.png":::
155
155
156
-
1. When the resource details are verified, a bot ID is shown in the **Bot ACS Id** column. You can use the bot ID to represent the bot in a chat thread by using the Communication Services Chat AddParticipant API. After you add the bot to a chat as participant, the bot starts to receive chat-related activities, and it can respond in the chat thread.
156
+
1. When the resource details are verified, a bot ID is shown in the **Bot Azure Communication Services Id** column. You can use the bot ID to represent the bot in a chat thread by using the Communication Services Chat AddParticipant API. After you add the bot to a chat as participant, the bot starts to receive chat-related activities, and it can respond in the chat thread.
157
157
158
158
:::image type="content" source="./media/smaller-acs-chat-channel-saved.png" alt-text="Screenshot that shows the new Communication Services user ID assigned to the bot." lightbox="./media/acs-chat-channel-saved.png":::
0 commit comments