Skip to content

Commit 64ed08c

Browse files
Update call-transcription-web.md
1 parent 35a4a13 commit 64ed08c

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

articles/communication-services/how-tos/calling-sdk/includes/call-transcription/call-transcription-web.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,27 @@ You can unsubscribe from the event with the following code:
3939
```js
4040
callTranscriptionFeature.off('isTranscriptionActiveChanged', isTranscriptionActiveChangedHandler);
4141
```
42+
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include-document.md)]
43+
44+
## Explicit Consent
45+
If your Teams meeting or call is configured to require explicit consent for recording or transcription, you are required to gather explicit consent from your users to be transcribed or Recorded.
46+
47+
### Support
48+
The following tables show support of explicit consent for specific call type and identity.
49+
50+
|Identities | Teams meeting | Room | 1:1 call | Group call | 1:1 Teams interop call | Group Teams interop call |
51+
|-----------------------------|---------------|------|----------|------------|------------------------|--------------------------|
52+
|Communication Services user |✔️| | | | | ✔️|
53+
|Microsoft 365 user |✔️| | | | | ✔️|
54+
55+
You can check if the meeting transcription requires explicit consent by property `isConsentRequired`. If the value is set to `true`, then explicit consent is required for the call.
56+
57+
```js
58+
const isTranscriptionConsentRequired = callTranscriptionFeature.isConsentRequired;
59+
```
60+
61+
If the transcription is active and explicit consent is required, user will not be able to unmute, turn video on and share screen until they provide the consent. You can provide the consent for the user by using the api `consentToBeingRecordedAndTranscribed`.
62+
63+
```js
64+
callTranscriptionFeature.consentToBeingRecordedAndTranscribed();
65+
```

0 commit comments

Comments
 (0)