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....")
 
(Updated via BpDeleteTranslateTags script)
 
(8 intermediate revisions by one other user not shown)
Line 1: Line 1:
<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 =  
=== Mute Call Recordings ===  
+
Mutes the call recording.
 +
 
 +
== Request ==
 +
=== Syntax ===
 
  window.bpspat.api.muteCallRecordings()
 
  window.bpspat.api.muteCallRecordings()
  
=== Unmute Call Recordings ===
+
=== Arguments ===
window.bpspat.api.unmuteCallRecordings()
+
{|border="1" style="border-collapse:collapse" cellpadding="5"
 
+
| '''Parameter'''
=== Get Call Recording Status (Callback) ===
+
| '''Type'''
window.bpspat.api.getCallRecordingStatus(callback)
+
| '''Description'''
 
+
|-
=== Start Call Recording (Callback) ===
+
| empty
window.bpspat.api.startCallRecording(callback)
+
| N/A
 
+
| There is no response when API method request is completed
=== 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;
 
}
 
 
 
 
 
 
 
  
 +
== Response ==
 +
Empty.
  
</translate>
+
In response to the request, the call recording is muted.

Latest revision as of 04:02, 29 May 2024

• 5.19 • 5.3 • 5.8


Mute Call Recordings

Mutes the call recording.

Request

Syntax

window.bpspat.api.muteCallRecordings()

Arguments

Parameter Type Description
empty N/A There is no response when API method request is completed

Response

Empty.

In response to the request, the call recording is muted.

< Previous | Next >