Reload the Page BX24.reloadWindow

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.

The method BX24.reloadWindow sends a command to reload the page with the application. Starting from version 25.800.0 of the rest module, this method can be used in embedding locations of the application.

void BX24.reloadWindow([Function callback])
        

Parameters

Name
type

Description

callback
function

Callback function that is executed after the command to reload the page is sent

Code Example

How to Use Examples in Documentation

BX24.init(function () {
            BX24.reloadWindow(function () {
                console.log('The command to reload the page has been sent');
            });
        });
        

Response Handling

The method does not return any data (void).

Continue Learning