Skip to content

Commit 47bce11

Browse files
Merge pull request #253260 from sloanster/patch-34
Update manage-calls-web.md
2 parents 8b41819 + 2c39425 commit 47bce11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/communication-services/how-tos/calling-sdk/includes/manage-calls/manage-calls-web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ await call.unmuteIncomingAudio();
161161
When incoming audio is muted, the participant will still receive the call audio (remote participant's audio). The call audio will not play in the speaker and the participant will not be able to listen until 'call.unmuteIncomingAudio()' is called. However, we can apply filter on call audio and play the filtered audio.
162162

163163
## Mute other participants
164+
> [!NOTE]
165+
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK version 1.18.1 or higher
164166
165167
To mute all other participants or mute a specific participant, you can use the asynchronous APIs `muteAllRemoteParticipants` on the call and `mute` on the remote participant:
166168

@@ -171,8 +173,6 @@ await call.muteAllRemoteParticipants();
171173
//mute a specific participant
172174
await call.remoteParticipants[0].mute();
173175
```
174-
> [!NOTE]
175-
> This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
176176

177177
## Manage remote participants
178178

@@ -284,7 +284,7 @@ const callId: string = call.id;
284284
```
285285
Get information about the call:
286286
> [!NOTE]
287-
> This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
287+
> This API is provided as a preview for developers and may change based on feedback that we receive. To use this api please use 'beta' release of Azure Communication Services Calling Web SDK
288288
```js
289289
const callInfo = call.info;
290290
```

0 commit comments

Comments
 (0)