Set Up Policy Call Recording

If new to Landis Contact Center, please visit Getting Started to setup a contact center organization before setting up policy call recording.

Overview of Setting Up Policy Call Recording

  1. Create Teams Resource Account for Recording Bot.

  2. Create Teams Recording Policy.

  3. Assign Teams Recording Policy to users.

  4. Setup Contact Center Users

  5. Assign policy recording users a Direct Call Records Group.

  6. Create or edit a Call Setting Policy to enable recording.

  7. Assign the Call Setting Policy to the Direct Call Records Group.

Create Teams Recording Policy

Connect to Teams PowerShell and run the following commands:

  1. Create Teams Resource account for Recording Bot:

Run the following command for the data center location of your Landis Contact Center organization.

Replace "[email protected]" with a new unique user principal name that will be used for the recording resource account.

New-CsOnlineApplicationInstance -UserPrincipalName "[email protected]" -DisplayName "LandisContactCenterRecordingBotInstance" -ApplicationId 3a08b250-02ce-4316-94f7-069f4ae0c41b
  1. Wait a couple minutes and run the following command:

Replace "[email protected]" with the user principal name specified in the above command.

$Instance = Get-CsOnlineApplicationInstance -Identity "[email protected]"
  1. Run the following command:

Sync-CsOnlineApplicationInstance -ObjectId $Instance.ObjectId -ApplicationId $Instance.ApplicationId
  1. Create Teams Recording policy:

New-CsTeamsComplianceRecordingPolicy -Identity LandisContactCenterRecordingPolicy -Enabled $true -Description "Recording Policy for Landis Contact Center"
New-CsTeamsComplianceRecordingApplication -Id $Instance.ObjectID -Parent LandisContactCenterRecordingPolicy -RequiredBeforeCallEstablishment $false -RequiredDuringCall $false -RequiredBeforeMeetingJoin $false -RequiredDuringMeeting $false
Set-CsTeamsComplianceRecordingPolicy -Identity LandisContactCenterRecordingPolicy -ComplianceRecordingApplications (Get-CsTeamsComplianceRecordingApplication -Identity ("LandisContactCenterRecordingPolicy/" + $Instance.ObjectId))

Enable Users for Policy Recording

  1. Assign the Teams recording policy to users:

Replace "[email protected]" in the below command with the user principal name of the user to be recorded.

Grant-CsTeamsComplianceRecordingPolicy -Identity "[email protected]" -PolicyName LandisContactCenterRecordingPolicy

You can also assign the Teams recording policy to a group of users:

New-CsGroupPolicyAssignment -GroupId "UPN of M365 group or distribution List or GUID of AAD Security Group" -PolicyType TeamsComplianceRecordingPolicy -PolicyName "LandisContactCenterRecordingPolicy"

2. Verify policy recording users are setup in Contact Center. See Setup Users

3. Assign policy recording users a Direct Call Records Group. Configuration | Users | Edit | Contact Center Settings | Direct Call Records Group. To create or edit a group, see Direct Call Records Group

4. Create or edit a Call Setting Policy to enable a Recording Mode. Administration | Call Setting Policies | Add or edit. See Call Setting Policies

5. Assign the Call Setting Policy to the Direct Call Records Group assigned to the policy recording users. Administration | Organization Units | Select the Direct call records group name | On the Call Setting Policy box, select the edit button | Select the call settings policy

6. Allow users to view recordings (optional). Assign the users a Data Access Policy to the Direct Call Records Group. Administration | Organization Units | Select the Direct call records group name | Verify the users are listed on the right panel and have the agent (at minimum) Data Access Policy. If the users are not listed, select "Add Member" button and add the users.

If the Call setting Policy allows the agent to enable or disable recording, the agent can control this on the agent panel.

Recordings can be stored in your own Azure blob storage. See External Recording Storage.

The Teams recording policy may take up to 24 hours for it to be applied. During this time, calls will not be recorded in Contact Center.

Disable Recording Audio Notification for Calls

Set-CsTeamsComplianceRecordingPolicy -Identity LandisContactCenterRecordingPolicy -WarnUserOnRemoval $false -DisableComplianceRecordingAudioNotificationForCalls $true

Disable Users for Policy Recording

Replace "[email protected]" in the below command with the user principal name of the user to be removed from recording.

Grant-CsTeamsComplianceRecordingPolicy -Identity "[email protected]" -PolicyName $null

Last updated

Was this helpful?