Skip to content

Commit c103bed

Browse files
committed
fix link warnings, add number lookup quickstart to TOC
1 parent f5bdaf1 commit c103bed

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

articles/communication-services/quickstarts/telephony/includes/number-lookup-java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Get started with the Phone Numbers client library for Java to look up operator i
99
- To enable Number Lookup service on your Azure Communication Services subscription, complete this [form](https://forms.microsoft.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbR058xZQ9HIBLikwspEUN6t5URUVDTTdWMEg5VElQTFpaMVMyM085ODkwVS4u) for us to allowlist your subscription.
1010
- [Java Development Kit (JDK)](/java/azure/jdk/?preserve-view=true&view=azure-java-stable) version 8 or above.
1111
- [Apache Maven](https://maven.apache.org/download.cgi).
12-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
12+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
1313

1414
### Prerequisite check
1515

@@ -182,7 +182,7 @@ if (operatorInfo.getOperatorDetails()!= null && operatorInfo.getOperatorDetails(
182182
System.out.println(operatorInfo.getPhoneNumber() + " is a " + numberType + " number, operated by " + operatorName);
183183
```
184184

185-
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../sms/send.md).
185+
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../../sms/send.md).
186186

187187
## Run the code
188188

articles/communication-services/quickstarts/telephony/includes/number-lookup-js.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Get started with the Phone Numbers client library for JavaScript to look up oper
88
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
99
- To enable Number Lookup service on your Azure Communication Services subscription, complete this [form](https://forms.microsoft.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbR058xZQ9HIBLikwspEUN6t5URUVDTTdWMEg5VElQTFpaMVMyM085ODkwVS4u) for us to allowlist your subscription.
1010
- [Node.js](https://nodejs.org/) Active LTS and Maintenance LTS versions (8.11.1 and 10.14.1 recommended).
11-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
11+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
1212

1313
### Prerequisite check
1414

@@ -92,7 +92,7 @@ let operatorInfo = results.values[0];
9292
console.log(operatorInfo.phoneNumber + " is a " + (operatorInfo.numberType ? operatorInfo.numberType : "unknown") + " number, operated by " + (operatorInfo.operatorDetails.name ? operatorInfo.operatorDetails.name : "an unknown operator"));
9393
```
9494

95-
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../sms/send.md).
95+
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../../sms/send.md).
9696

9797
## Run the code
9898

articles/communication-services/quickstarts/telephony/includes/number-lookup-net.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Get started with the Phone Numbers client library for C# to look up operator inf
88
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
99
- To enable Number Lookup service on your Azure Communication Services subscription, complete this [form](https://forms.microsoft.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbR058xZQ9HIBLikwspEUN6t5URUVDTTdWMEg5VElQTFpaMVMyM085ODkwVS4u) for us to allowlist your subscription.
1010
- The latest version of [.NET Core client library](https://dotnet.microsoft.com/download/dotnet-core) for your operating system.
11-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
11+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
1212

1313
### Prerequisite check
1414

@@ -115,7 +115,7 @@ OperatorInformation operatorInformation = searchResult.Results[0];
115115
Console.WriteLine($"{operatorInformation.PhoneNumber} is a {operatorInformation.NumberType ?? "unknown"} number, operated by {operatorInformation.OperatorDetails.Name ?? "an unknown operator"}");
116116
```
117117

118-
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../sms/send.md).
118+
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../../sms/send.md).
119119

120120
## Run the code
121121

articles/communication-services/quickstarts/telephony/includes/number-lookup-python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Get started with the Phone Numbers client library for Python to look up operator
88
- An Azure account with an active subscription. [Create an account for free](https://azure.microsoft.com/free/?WT.mc_id=A261C142F).
99
- To enable Number Lookup service on your Azure Communication Services subscription, complete this [form](https://forms.microsoft.com/pages/responsepage.aspx?id=v4j5cvGGr0GRqy180BHbR058xZQ9HIBLikwspEUN6t5URUVDTTdWMEg5VElQTFpaMVMyM085ODkwVS4u) for us to allowlist your subscription.
1010
- [Python](https://www.python.org/downloads/) 3.7+.
11-
- An active Communication Services resource and connection string. [Create a Communication Services resource](../create-communication-resource.md).
11+
- An active Communication Services resource and connection string. [Create a Communication Services resource](../../create-communication-resource.md).
1212

1313
### Prerequisite check
1414

@@ -119,7 +119,7 @@ else:
119119
print(str.format("{0} is a {1} number operated by {2}", operator_information.phone_number, number_type, operator_name))
120120
```
121121

122-
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../sms/send.md).
122+
You may also use the operator information to determine whether to send an SMS. For more information on sending an SMS, see the [SMS Quickstart](../../sms/send.md).
123123

124124
## Run the code
125125

articles/communication-services/toc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,8 @@ items:
204204
href: quickstarts/sms/apply-for-toll-free-verification.md
205205
- name: Enable alphanumeric sender ID
206206
href: quickstarts/sms/enable-alphanumeric-sender-id.md
207+
- name: Look up a recipient phone number
208+
href: quickstarts/telephony/number-lookup.md
207209
- name: Events
208210
items:
209211
- name: View SMS events

0 commit comments

Comments
 (0)