Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.13 KB

File metadata and controls

47 lines (31 loc) · 1.13 KB

Call via Internal Communication BX24.im.callTo

{% note tip "" %}

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.

{% endnote %}

{% include notitle iframe context %}

The method BX24.im.callTo sends a command to call a Bitrix24 user via internal communication.

void BX24.im.callTo(Integer userId[, Boolean video])

Parameters

{% include Note on required parameters %}

#| || Name type | Description || || userId* integer | The identifier of the Bitrix24 user to be called || || video boolean | Type of call: true — video call, false — audio call || |#

Code Example

{% include Note on examples %}

BX24.init(function () {
    BX24.im.callTo(1, true);
});

Response Handling

The method does not return data (void).

Continue Learning