Change the title of the call card from the CallCardSetCardTitle application
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 CallCardSetCardTitle method allows you to change the title of the call card from the application.
When called, you need to pass an object with the property title. Nothing is passed to the callback function.
Example
BX24.placement.bindEvent('BackgroundCallCard::initialized', event => {
BX24.placement.call('CallCardSetCardTitle', { title: 'hello world!' }, () => {
// some code
})
});
How to Use Examples in Documentation
Copied