Skip to content

Commit 2985a37

Browse files
committed
User sentence case for headers
1 parent 94bc0d5 commit 2985a37

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/communication-services/quickstarts/rooms/manage-rooms-call.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ call_connection_properties = client.connect_call(call_locator=room_call_locator,
6767
Once successfully connected to a room call, a `CallConnect` event is notified via Callback URI. You can use `callConnectionId` to retrieve a call connection on the room call as needed. The following sample code snippets use the `callConnectionId` to demonstrate this function.
6868

6969

70-
### Add PSTN Participant
70+
### Add PSTN participant
7171
Using Call Automation you can dial out to a PSTN number and add the participant into a room call. You must, however, set up a room to enable PSTN dial-out option (`EnabledPSTNDialout` set to `true`) and the Azure Communication Services resource must have a valid phone number provisioned.
7272

7373
For more information, see [Rooms quickstart](../../quickstarts//rooms/get-started-rooms.md?tabs=windows&pivots=platform-azcli#enable-pstn-dial-out-capability-for-a-room).
@@ -120,7 +120,7 @@ result = call_connection_client.add_participant(
120120
```
121121
-----
122122

123-
### Remove PSTN Participant
123+
### Remove PSTN participant
124124

125125
### [csharp](#tab/csharp)
126126

@@ -218,7 +218,7 @@ result = call_connection_client.send_dtmf_tones(
218218
```
219219
-----
220220

221-
### Call Recording
221+
### Call recording
222222
Azure Communication Services rooms support recording capabilities including `start`, `stop`, `pause`, `resume`, and so on, provided by Call Automation. See the following code snippets to start/stop/pause/resume a recording in a room call. For a complete list of actions, see [Call Automation recording](../../concepts/voice-video-calling/call-recording.md#get-full-control-over-your-recordings-with-our-call-recording-apis).
223223

224224
### [csharp](#tab/csharp)
@@ -315,7 +315,7 @@ stop_recording = call_automation_client.stop_recording(recording_id = recording_
315315
```
316316
-----
317317

318-
### Terminate a Call
318+
### Terminate a call
319319
You can use the Call Automation SDK Hang Up action to terminate a call. When the Hang Up action completes, the SDK publishes a `CallDisconnected` event.
320320

321321
### [csharp](#tab/csharp)
@@ -347,7 +347,7 @@ call_connection_client.hang_up(is_for_everyone=True)
347347
```
348348
-----
349349

350-
## Other Actions
350+
## Other actions
351351
The following in-call actions are also supported in a room call.
352352
1. Add participant (ACS identifier)
353353
1. Remove participant (ACS identifier)

0 commit comments

Comments
 (0)