Skip to content

Commit 1d256ff

Browse files
committed
edit pass: communication-services-telephony
1 parent b94b4ae commit 1d256ff

File tree

3 files changed

+13
-15
lines changed

3 files changed

+13
-15
lines changed

articles/communication-services/how-tos/telephony/domain-validation.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ If you're using a subdomain, make sure that this subdomain is also added and ver
4242

4343
[![Screenshot of verifying a custom domain.](./media/direct-routing-verify-domain-2.png)](./media/direct-routing-verify-domain-2.png#lightbox)
4444

45-
> [!NOTE]
46-
> It might take up to 30 minutes for a new DNS record to propagate on the internet.
45+
It might take up to 30 minutes for a new DNS record to propagate on the internet.
4746

4847
1. Select **Next**. If you set up everything correctly, **Domain status** should change to **Verified** next to the added domain.
4948

articles/communication-services/quickstarts/telephony/includes/voice-routing-sdk-jscript.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ ms.author: nikuklic
2424

2525
Find the finalized code for the following procedures on [GitHub](https://github.com/Azure-Samples/communication-services-javascript-quickstarts/tree/main/direct-routing-quickstart).
2626

27+
You can also find more usage examples for `SipRoutingClient` on [GitHub](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/communication/azure-communication-phonenumbers/src/samples/java/com/azure/communication/phonenumbers/siprouting/AsyncClientJavaDocCodeSnippets.java).
28+
2729
## Create a new Node.js application
2830

2931
First, open your terminal or command window, create a new directory for your app, and go to it:
@@ -53,7 +55,7 @@ main();
5355
Use the `npm install` command to install the Azure Communication Services Phone Numbers client library for JavaScript:
5456

5557
``` console
56-
npm install @azure/communication-phone-numbers --save
58+
npm install @azure/communication-phone-numbers --save
5759
```
5860

5961
The `--save` option adds the library as a dependency in your *package.json* file.
@@ -97,10 +99,11 @@ Azure Communication Services direct routing allows communication with registered
9799

98100
### Create or update routes
99101

100-
> [!NOTE]
101-
> The order of routes determines the priority of routes. The first route that matches the regex will be picked for a call.
102+
Provide routing rules for outbound calls. Each rule consists of two parts: a regex pattern that should match a dialed phone number and the FQDN of a registered trunk where call is routed.
103+
104+
The order of routes determines the priority of routes. The first route that matches the regex will be picked for a call.
102105

103-
Provide routing rules for outbound calls. Each rule consists of two parts: a regex pattern that should match a dialed phone number and the FQDN of a registered trunk where call is routed. In this example, you create one route for numbers that start with `+1` and a second route for numbers that start with just `+`:
106+
In this example, you create one route for numbers that start with `+1` and a second route for numbers that start with just `+`:
104107

105108
```javascript
106109
await client.setRoutes([
@@ -157,8 +160,5 @@ You can use the following example to delete a single trunk (SBC), if no voice ro
157160
Use the node command to run the code that you added to the `direct-routing-quickstart.js` file:
158161

159162
``` console
160-
node direct-routing-quickstart.js
163+
node direct-routing-quickstart.js
161164
```
162-
163-
> [!NOTE]
164-
> You can find more usage examples for `SipRoutingClient` on [GitHub](https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/communication/azure-communication-phonenumbers/src/samples/java/com/azure/communication/phonenumbers/siprouting/AsyncClientJavaDocCodeSnippets.java).

articles/communication-services/quickstarts/telephony/includes/voice-routing-sdk-portal.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ ms.author: nikuklic
1919
- The fully qualified domain name (FQDN) and port number of a session border controller (SBC) in an operational telephony system.
2020
- The [verified domain name](../../../how-tos/telephony/domain-validation.md) of the SBC FQDN.
2121

22+
> [!NOTE]
23+
> You can find more usage examples for `SipRoutingClient` on [GitHub](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/communication/Azure.Communication.PhoneNumbers/README.md#siproutingclient).
24+
2225
## Add a session border controller
2326

2427
1. On the left pane, under **Voice Calling - PSTN**, select **Direct routing**. On the **Session Border Controller** tab, select **Configure**.
@@ -66,8 +69,4 @@ To delete an SBC:
6669
1. Clear the FQDN and port fields for the SBC that you want to remove, and then select **Next**.
6770
1. On the **Voice Routes** tab, review the voice routing configuration. Make changes if needed, and then select **Save**.
6871

69-
> [!NOTE]
70-
> When you remove an SBC that's associated with a voice route, you can choose a different SBC for the route on the **Voice Routes** tab. The voice route without an SBC will be deleted.
71-
72-
> [!NOTE]
73-
> You can find more usage examples for `SipRoutingClient` on [GitHub](https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/communication/Azure.Communication.PhoneNumbers/README.md#siproutingclient).
72+
When you remove an SBC that's associated with a voice route, you can choose a different SBC for the route on the **Voice Routes** tab. The voice route without an SBC will be deleted.

0 commit comments

Comments
 (0)