Skip to content

Commit 2760164

Browse files
committed
consistent headers
1 parent 802a866 commit 2760164

File tree

4 files changed

+30
-30
lines changed

4 files changed

+30
-30
lines changed

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-get-started-java.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -236,8 +236,8 @@ Here's MessageTemplate creation using a default template, `sample_template`.
236236
If `sample_template` isn't available to you, skip to [Option 2](#option-2-initiate-conversation-from-user). For advanced users, see the page [Templates](../../../../../concepts/advanced-messaging/whatsapp/template-messages.md) to understand how to send a different template with Option 1.
237237

238238
Messages SDK allows Contoso to send templated WhatsApp messages to WhatsApp users. To send template messages below details are required:
239-
- WhatsApp Channel ID
240-
- Recipient Phone Number in E16 format
239+
- [WhatsApp Channel ID](#set-channel-registration-id)
240+
- [Recipient Phone Number in E16 format](#set-recipient-list)
241241
- Template details
242242
- Name like 'sample_template'
243243
- Language like 'en_us'
@@ -276,8 +276,8 @@ To do so, from your personal WhatsApp account, send a message to your business n
276276
### Send a text message to a WhatsApp user
277277

278278
Messages SDK allows Contoso to send text WhatsApp messages, which initiated WhatsApp users initiated. To send text messages below details are required:
279-
- WhatsApp Channel ID
280-
- Recipient Phone Number in E16 format
279+
- [WhatsApp Channel ID](#set-channel-registration-id)
280+
- [Recipient Phone Number in E16 format](#set-recipient-list)
281281
- Message body/text to be sent
282282

283283
> [!IMPORTANT]
@@ -302,8 +302,8 @@ for (MessageReceipt messageReceipt : textMessageResult.getReceipts()) {
302302
### Send a media message to a WhatsApp user
303303

304304
Messages SDK allows Contoso to send Image WhatsApp messages to WhatsApp users. To send Image embedded messages below details are required:
305-
- WhatsApp Channel ID
306-
- Recipient Phone Number in E16 format
305+
- [WhatsApp Channel ID](#set-channel-registration-id)
306+
- [Recipient Phone Number in E16 format](#set-recipient-list)
307307
- MediaUri of the Image
308308

309309
> [!IMPORTANT]
@@ -342,7 +342,7 @@ for (MessageReceipt messageReceipt : mediaMessageResult.getReceipts()) {
342342
mvn exec:java -D"exec.mainClass"="com.communication.quickstart.App" -D"exec.cleanupDaemonThreads"="false"
343343
```
344344

345-
## Sample code
345+
## Full sample code
346346

347347
Find the finalized code for this quickstart on [GitHub](https://github.com/Azure/azure-sdk-for-java/tree/d668cb44f64d303e71d2ee72a8b0382896aa09d5/sdk/communication/azure-communication-messages/src/samples/java/com/azure/communication/messages).
348348

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-get-started-js.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ Here's MessageTemplate creation using a default template, `sample_template`.
240240
If `sample_template` isn't available to you, skip to [Option 2](#option-2-initiate-conversation-from-user). For advanced users, see the page [Templates](../../../../../concepts/advanced-messaging/whatsapp/template-messages.md) to understand how to send a different template with Option 1.
241241

242242
Messages SDK allows Contoso to send templated WhatsApp messages to WhatsApp users. To send template messages below details are required:
243-
- WhatsApp Channel ID
244-
- Recipient Phone Number in E16 format
243+
- [WhatsApp Channel ID](#set-channel-registration-id)
244+
- [Recipient Phone Number in E16 format](#set-recipient-list)
245245
- Template details
246246
- Name like 'sample_template'
247247
- Language like 'en_us'
@@ -300,8 +300,8 @@ To do so, from your personal WhatsApp account, send a message to your business n
300300
### Send a text message to a WhatsApp user
301301

302302
Messages SDK allows Contoso to send text WhatsApp messages, which initiated WhatsApp users initiated. To send text messages below details are required:
303-
- WhatsApp Channel ID
304-
- Recipient Phone Number in E16 format
303+
- [WhatsApp Channel ID](#set-channel-registration-id)
304+
- [Recipient Phone Number in E16 format](#set-recipient-list)
305305
- Message body/text to be sent
306306

307307
> [!IMPORTANT]
@@ -335,8 +335,8 @@ if (textMessageResult.status === "202") {
335335
### Send a media message to a WhatsApp user
336336

337337
Messages SDK allows Contoso to send Image WhatsApp messages to WhatsApp users. To send Image embedded messages below details are required:
338-
- WhatsApp Channel ID
339-
- Recipient Phone Number in E16 format
338+
- [WhatsApp Channel ID](#set-channel-registration-id)
339+
- [Recipient Phone Number in E16 format](#set-recipient-list)
340340
- MediaUri of the Image
341341

342342
> [!IMPORTANT]
@@ -378,7 +378,7 @@ Use the node command to run the code you added to the send-messages.js file.
378378
node ./send-messages.js
379379
```
380380

381-
## Sample code
381+
## Full sample code
382382

383383
You can download the sample app from [GitHub](https://github.com/Azure/azure-sdk-for-js/tree/7efc61a0414c6f898409e355d0ba8d228882625f/sdk/communication/communication-messages-rest/samples-dev).
384384

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-get-started-net.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -292,8 +292,8 @@ Here's MessageTemplate creation using a default template, `sample_template`.
292292
If `sample_template` isn't available to you, skip to [Option 2](#option-2-initiate-conversation-from-user). For advanced users, see the page [Templates](../../../../../concepts/advanced-messaging/whatsapp/template-messages.md) to understand how to send a different template with Option 1.
293293

294294
Messages SDK allows Contoso to send templated WhatsApp messages to WhatsApp users. To send template messages below details are required:
295-
- WhatsApp Channel ID
296-
- Recipient Phone Number in E16 format
295+
- [WhatsApp Channel ID](#set-channel-registration-id)
296+
- [Recipient Phone Number in E16 format](#set-recipient-list)
297297
- Template details
298298
- Name like 'sample_template'
299299
- Language like 'en_us'
@@ -340,8 +340,8 @@ To do so, from your personal WhatsApp account, send a message to your business n
340340
### Send a text message to a WhatsApp user
341341

342342
Messages SDK allows Contoso to send text WhatsApp messages, which initiated WhatsApp users initiated. To send text messages below details are required:
343-
- WhatsApp Channel ID
344-
- Recipient Phone Number in E16 format
343+
- [WhatsApp Channel ID](#set-channel-registration-id)
344+
- [Recipient Phone Number in E16 format](#set-recipient-list)
345345
- Message body/text to be sent
346346

347347
> [!IMPORTANT]
@@ -363,8 +363,8 @@ Response<SendMessageResult> sendTextMessageResult =
363363
### Send a media message to a WhatsApp user
364364

365365
Messages SDK allows Contoso to send Image WhatsApp messages to WhatsApp users. To send Image embedded messages below details are required:
366-
- WhatsApp Channel ID
367-
- Recipient Phone Number in E16 format
366+
- [WhatsApp Channel ID](#set-channel-registration-id)
367+
- [Recipient Phone Number in E16 format](#set-recipient-list)
368368
- MediaUri of the Image
369369

370370
> [!IMPORTANT]
@@ -418,6 +418,6 @@ dotnet run
418418

419419
---
420420

421-
## Sample code
421+
## Full sample code
422422

423423
[!INCLUDE [Full code example with .NET](./messages-get-started-full-example-net.md)]

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/get-started/messages-quickstart-python.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -237,8 +237,8 @@ Here's MessageTemplate creation using a default template, `sample_template`.
237237
If `sample_template` isn't available to you, skip to [Option 2](#option-2-initiate-conversation-from-user). For advanced users, see the page [Templates](../../../../../concepts/advanced-messaging/whatsapp/template-messages.md) to understand how to send a different template with Option 1.
238238

239239
Messages SDK allows Contoso to send templated WhatsApp messages to WhatsApp users. To send template messages below details are required:
240-
- WhatsApp Channel ID
241-
- Recipient Phone Number in E16 format
240+
- [WhatsApp Channel ID](#set-channel-registration-id)
241+
- [Recipient Phone Number in E16 format](#set-recipient-list)
242242
- Template details
243243
- Name like 'sample_template'
244244
- Language like 'en_us'
@@ -308,8 +308,8 @@ To do so, from your personal WhatsApp account, send a message to your business n
308308
### Send a text message to a WhatsApp user
309309

310310
Messages SDK allows Contoso to send text WhatsApp messages, which initiated WhatsApp users initiated. To send text messages below details are required:
311-
- WhatsApp Channel ID
312-
- Recipient Phone Number in E16 format
311+
- [WhatsApp Channel ID](#set-channel-registration-id)
312+
- [Recipient Phone Number in E16 format](#set-recipient-list)
313313
- Message body/text to be sent
314314

315315
> [!IMPORTANT]
@@ -362,8 +362,8 @@ WhatsApp Text Message with message id <GUID> was successfully sent to <ToRecipie
362362
### Send a media message to a WhatsApp user
363363

364364
Messages SDK allows Contoso to send Image WhatsApp messages to WhatsApp users. To send Image embedded messages below details are required:
365-
- WhatsApp Channel ID
366-
- Recipient Phone Number in E16 format
365+
- [WhatsApp Channel ID](#set-channel-registration-id)
366+
- [Recipient Phone Number in E16 format](#set-recipient-list)
367367
- MediaUri of the Image
368368

369369
> [!IMPORTANT]
@@ -417,7 +417,7 @@ Azure Communication Services - Advanced Messages Quickstart
417417
WhatsApp Image containing Message with message id <GUID> was successfully sent to <ToRecipient>.
418418
```
419419

420-
### Full code
420+
## Full sample code
421421

422422
```python
423423
import os
@@ -523,7 +523,7 @@ WhatsApp Text Message with message id <<GUID>> was successfully sent to <<ToReci
523523
WhatsApp Image containing Message with message id <<GUID>> was successfully sent to <<ToRecipient>>
524524
```
525525

526-
## Sample code
526+
### Other Samples
527527

528-
You can review and download this and other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).
528+
You can review and download other sample codes for Python Messages SDK on [GitHub](https://github.com/Azure-Samples/communication-services-python-quickstarts/tree/main/messages-quickstart).
529529

0 commit comments

Comments
 (0)