Skip to content

Commit e620d3a

Browse files
Explicit consent - verbose changes
adding the information that consent is per call and need to be provided again if the user rejoins
1 parent 72a05f9 commit e620d3a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ const cloudRecordingsUpdatedHandler = (args: { added: SDK.RecordingInfo[], remov
6666
callRecordingApi.on('recordingsUpdated', cloudRecordingsUpdatedHandler );
6767
```
6868
## Explicit Consent
69-
If your Teams meeting or call is configured to require explicit consent for recording and transcription,
70-
you need to collect consent from all participants in the call before you can record them. You can provide consent proactively when joining the meeting or reactively when the recording starts. Until users give explicit consent, users have disabled audio, video, and screen sharing.
69+
When your Teams meeting or call is configured to require explicit consent for recording and transcription,
70+
you are required to collect consent from all participants in the call before you can record them. You can provide consent proactively when joining the meeting or reactively when the recording starts. Until explicit consent is given, participants' audio, video, and screen sharing will be disabled during recording.
7171
7272
### Support
7373
The following tables show support of explicit consent for specific call type and identity.
@@ -78,13 +78,13 @@ The following tables show support of explicit consent for specific call type and
7878
|Microsoft 365 user | ✔️ | | | | | ✔️ |
7979
8080
81-
You can check if the meeting recording requires explicit consent by property `isConsentRequired`. If the value is set to `true`, then explicit consent is required for the call.
81+
You can check if the meeting recording requires explicit consent by property `isConsentRequired`. If the value is set to `true`, then explicit consent is required for the `call`.
8282
8383
```js
8484
const isConsentRequired = callRecordingApi.isConsentRequired;
8585
```
86-
87-
If you already collected consent from the user to be recorded, you can call method `consentToBeingRecordedAndTranscribed()` to indicate explicit consent to the service.
86+
87+
If you have already obtained the user's consent for recording, you can call `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.
8888
8989
```js
9090
callRecordingApi.consentToBeingRecordedAndTranscribed();

0 commit comments

Comments
 (0)