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
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md
+18-1Lines changed: 18 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -265,7 +265,7 @@ const state = remoteParticipant.state;
265
265
> [!NOTE]
266
266
> To use this API please use Azure Communication Services Calling Web SDK version 1.26.1 or higher.
267
267
268
-
To mute all other participants or mute a specific participant who are connected to a call, you can use the asynchronous APIs `muteAllRemoteParticipants` on the call and `mute` on the remote participant. The `mutedByOthers` event from Call is raised when the local participant has been muted by others.
268
+
To mute all other participants or mute a specific participant who is connected to a call, you can use the asynchronous APIs `muteAllRemoteParticipants` on the call and `mute` on the remote participant. The `mutedByOthers` event from Call is raised when the local participant has been muted by others.
269
269
270
270
*Note: The scenarios to mute PSTN (phone number) participants or 1:1 call participants are not supported.*
271
271
@@ -376,3 +376,20 @@ Check is screen sharing is on. It returns `Boolean`.
376
376
```js
377
377
const isScreenSharingOn = call.isScreenSharingOn;
378
378
```
379
+
380
+
## Hang up
381
+
382
+
There are two ways how you can hang up the call. You can leave the call and keep other participants in the call or terminate the call for all participants. If you want to leave the call, then just use
383
+
384
+
```js
385
+
call.hangUp();
386
+
```
387
+
388
+
You can also end the call for all participants if you provide `HangUpOptions`.
Copy file name to clipboardExpand all lines: articles/communication-services/how-tos/calling-sdk/manage-calls.md
+49-1Lines changed: 49 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,54 @@ Learn how to manage calls with the Azure Communication Services SDKS. We'll lear
25
25
- A `User Access Token` to enable the call client. For more information on [how to get a `User Access Token`](../../quickstarts/identity/access-tokens.md)
26
26
- Optional: Complete the quickstart for [getting started with adding calling to your application](../../quickstarts/voice-video-calling/getting-started-with-calling.md)
27
27
28
+
## Support
29
+
30
+
The following tables define support of breakout rooms in Azure Communication Services.
31
+
32
+
### Identities and call types
33
+
34
+
The following table shows support of features for specific call type and identity.
35
+
36
+
|Identities | Teams meeting | Room | 1:1 call | Group call | 1:1 Teams interop call | Group Teams interop call |
0 commit comments