You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
68
68
69
69
70
-
### Add PSTN Participant
70
+
### Add PSTN participant
71
71
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.
72
72
73
73
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(
120
120
```
121
121
-----
122
122
123
-
### Remove PSTN Participant
123
+
### Remove PSTN participant
124
124
125
125
### [csharp](#tab/csharp)
126
126
@@ -218,7 +218,7 @@ result = call_connection_client.send_dtmf_tones(
218
218
```
219
219
-----
220
220
221
-
### Call Recording
221
+
### Call recording
222
222
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).
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.
0 commit comments