Skip to content

Commit 72a05f9

Browse files
Explicit consent - verbose changes
Adding that consent is per call session
1 parent 436b5aa commit 72a05f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ callTranscriptionFeature.off('isTranscriptionActiveChanged', isTranscriptionActi
4242
[!INCLUDE [Public Preview Disclaimer](../../../../includes/public-preview-include-document.md)]
4343

4444
## 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 allow users to be transcribed or recorded. You can provide consent proactively when joining the meeting or reactively when the recording or transcription starts. Until users give explicit consent, users have disabled audio, video, and screen sharing.
45+
When 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 allow users to be transcribed or recorded. You can provide consent proactively when joining the meeting or reactively when the recording or transcription starts. Until explicit consent is given, participants' audio, video, and screen sharing will be disabled during transcription.
4646

47-
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.
47+
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`.
4848

4949
```js
5050
const isTranscriptionConsentRequired = callTranscriptionFeature.isConsentRequired;
5151
```
5252

53-
If you already collected consent from the user to be transcribed, you can call method `consentToBeingRecordedAndTranscribed()` to indicate explicit consent to the service.
53+
If you have already obtained the user's consent for transcription, you can call the `consentToBeingRecordedAndTranscribed()` method to indicate explicit consent to the service. Note that this consent is valid for one `call` session only and users will need to provide consent again if they rejoin the meeting.
5454

5555
```js
5656
callTranscriptionFeature.consentToBeingRecordedAndTranscribed();

0 commit comments

Comments
 (0)