From Bright Pattern Documentation
< 5.19:Embedded-agent-desktop-sdk-specification‎ | Methods
Revision as of 23:22, 12 February 2019 by Tracy (talk | contribs) (Created page with "<translate> = Unmute Call Recording (Callback) = Unmutes the call recording and gets confirmation that recording is not on mute. == Request == === Syntax === window.bpspat.a...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
• 5.19 • 5.3 • 5.8

<translate>

Unmute Call Recording (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 contains 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 | false;
   data.muted = true | false;
}


</translate>

< Previous