Disable Operator Microphone from the CallCardSetMute Application

We are still updating this page

Some data may be missing here — we will complete it shortly.

Scope: telephony

Who can execute the method: any user

The CallCardSetMute method allows the application to disable the operator's microphone.

The application must pass an object to the method with the property muted, which contains a boolean value: true - the microphone should be off, false - on. No data is passed to the callback function.

Example

BX24.placement.bindEvent('BackgroundCallCard::initialized', event => {
            BX24.placement.call('CallCardSetMute', { muted: true }, () => {
        // some code
            });
        });
        

How to Use Examples in Documentation