From Bright Pattern Documentation
<translate>
Call Recordings Control
This method is used for controlling call recordings and getting the status of call recordings. There types of requests are as follows.
Requests
Mute Call Recordings
window.bpspat.api.muteCallRecordings()
Unmute Call Recordings
window.bpspat.api.unmuteCallRecordings()
Get Call Recording Status (Callback)
window.bpspat.api.getCallRecordingStatus(callback)
Start Call Recording (Callback)
window.bpspat.api.startCallRecording(callback)
Stop Call Recording (Callback)
window.bpspat.api.stopCallRecording(callback)
Mute Call Recording (Callback)
window.bpspat.api.muteCallRecording(callback)
Unmute Call Recording (Callback)
window.bpspat.api.unmuteCallRecording(callback) callback = function(data) { data.item_id = "12121212"; data.recording = true | false; data.muted = true | false; }
</translate>