From Bright Pattern Documentation
Jump to: navigation, search
(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....")
 
Line 1: Line 1:
 
<translate>
 
<translate>
 
= Call Recordings Control =
 
= 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.
+
This method is used for controlling call recordings and getting the status of call recordings. The types of requests are given as follows.
  
 
== Requests ==
 
== Requests ==

Revision as of 00:12, 4 October 2018

• 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 >