Call the Registered Interface Command BX24.placement.call

If you are developing integrations for Bitrix24 using AI tools (Codex, Claude Code, Cursor), connect to the MCP server so that the assistant can utilize the official REST documentation.

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