Skip to content

Commit 064fc72

Browse files
authored
Update call-recording-java.md
1 parent 4b7adef commit 064fc72

File tree

1 file changed

+3
-3
lines changed
  • articles/communication-services/quickstarts/voice-video-calling/includes/call-recording-samples

1 file changed

+3
-3
lines changed

articles/communication-services/quickstarts/voice-video-calling/includes/call-recording-samples/call-recording-java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ Before you start testing Call Recording, make sure to comply with the following
1212

1313
- You need an Azure account with an active subscription.
1414
- Deploy a Communication Service resource. Record your resource **connection string**.
15-
- Subscribe to events via [Azure Event Grid](https://learn.microsoft.com/en-us/azure/event-grid/event-schema-communication-services).
15+
- Subscribe to events via [Azure Event Grid](https://learn.microsoft.com/azure/event-grid/event-schema-communication-services).
1616
- Download the [Java SDK](https://dev.azure.com/azure-sdk/public/_artifacts/feed/azure-sdk-for-java/maven/com.azure%2Fazure-communication-callautomation/overview/1.0.0-alpha.20221013.1)
1717

1818
**IMPORTANT**:
1919
Call Recording APIs use exclusively the `serverCallId`to initiate recording. There are a couple of methods you can use to fetch the `serverCallId` depending on your scenario:
2020
- When using Call Automation, you have two options to get the `serverCallId`:
21-
1) Once a call is created, a `serverCallId` is returned as a property of the `CallConnected` event after a call has been established. Learn how to [Get serverCallId](https://learn.microsoft.com/en-us/azure/communication-services/quickstarts/voice-video-calling/callflows-for-customer-interactions?pivots=programming-language-csharp#configure-programcs-to-answer-the-call) from Call Automation SDK.
21+
1) Once a call is created, a `serverCallId` is returned as a property of the `CallConnected` event after a call has been established. Learn how to [Get serverCallId](https://learn.microsoft.com/azure/communication-services/quickstarts/voice-video-calling/callflows-for-customer-interactions?pivots=programming-language-csharp#configure-programcs-to-answer-the-call) from Call Automation SDK.
2222
2) Once you answer the call or a call is created the `serverCallId` is returned as a property of the `AnswerCallResult` or `CreateCallResult` API responses respectively.
2323

2424
- When using Calling Client SDK, you can retrieve the `serverCallId` by using the `getServerCallId` method on the call.
@@ -107,7 +107,7 @@ Response<Void> response = callAutomationClient.getCallRecording()
107107

108108
## 6. Download recording File using 'downloadToWithResponse' API
109109

110-
Use an [Azure Event Grid](https://learn.microsoft.com/en-us/azure/event-grid/event-schema-communication-services) web hook or other triggered action should be used to notify your services when the recorded media is ready for download.
110+
Use an [Azure Event Grid](https://learn.microsoft.com/azure/event-grid/event-schema-communication-services) web hook or other triggered action should be used to notify your services when the recorded media is ready for download.
111111

112112
Below is an example of the event schema.
113113

0 commit comments

Comments
 (0)