From Bright Pattern Documentation
Jump to: navigation, search
• 5.19 • 5.3 • 5.8

<translate>

Call Recordings Control

This method is used for controlling call recordings and getting the status of call recordings. The types of requests are given 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>

< Previous | Next >