From Bright Pattern Documentation
< 5.19:Embedded-agent-desktop-sdk-specification‎ | Methods
Revision as of 00:11, 4 October 2018 by Tracy (talk | contribs) (Created page with "<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....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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. 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>

< Previous | Next >