From Bright Pattern Documentation
Jump to: navigation, search
(Updated via BpDeleteTranslateTags script)
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
<translate>
+
 
 
= unmuteCallRecording(callback) =
 
= unmuteCallRecording(callback) =
 
Unmutes the call recording and gets confirmation that recording is not on mute.
 
Unmutes the call recording and gets confirmation that recording is not on mute.
Line 22: Line 22:
  
 
== Response ==
 
== Response ==
The response object contains the following fields.
+
The response object may contain the following fields.
  
 
{|border="1" style="border-collapse:collapse" cellpadding="5"
 
{|border="1" style="border-collapse:collapse" cellpadding="5"
Line 45: Line 45:
 
  {
 
  {
 
     data.item_id = "12121212";
 
     data.item_id = "12121212";
     data.recording = true | false;
+
     data.recording = true;
     data.muted = true | false;
+
     data.muted = false;
 
  }
 
  }
 
 
</translate>
 

Latest revision as of 04:02, 29 May 2024

• 5.19 • 5.3 • 5.8


unmuteCallRecording(callback)

Unmutes the call recording and gets confirmation that recording is not on mute.

Request

Syntax

window.bpspat.api.unmuteCallRecording(callback)
callback = function(data) {
}

Arguments

Parameter Type Description
callback function JavaScript method executed when API method request is completed


Response

The response object may contain the following fields.

Name Data Type Description
data.item_id string interaction ID
data.recording boolean Whether a call is being recorded ("true") or not ("false")
data.muted boolean Whether the call recording is on mute ("true") or not ("false")

Example

{
   data.item_id = "12121212";
   data.recording = true;
   data.muted = false;

}

< Previous