Call the Registered Interface Command BX24.placement.call

Scope: placement

The method BX24.placement.call invokes a registered interface command.

Parameters

Required parameters are marked with *

Name
type

Description

command*
string

The command to be invoked

parameters
object

Parameters to be passed

callback*
callable

Callback function

Code Example

How to Use Examples in Documentation

BX24.ready(function () {
            BX24.init(function () {
                BX24.placement.call('getStatus', {}, function (result) {
                    console.log(result);
                });
        
                BX24.placement.call('CallCardSetCardTitle', {title: 'hello world!'}, function (result) {
                    console.log(result);
                });
            });
        });
        

Continue Learning