Change Text in the Center of the Call Card from the Application CallCardSetStatusText
We are still updating this page
Some data may be missing here — we will fill it in shortly.
Scope:
telephonyWho can execute the method: any user
The CallCardSetStatusText method allows the application to change the text in the center of the call card.
When called, it requires an object with the property statusText. Nothing is passed to the callback function.
Example
BX24.placement.bindEvent('BackgroundCallCard::initialized', event => {
BX24.placement.call('CallCardSetStatusText', { statusText: 'hello world!' }, () => {
// some code
})
});
How to Use Examples in Documentation
Copied