Notify about the completion of the installer BX24.installFinish

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.

BX24.installFinish(): void;
        

The function BX24.installFinish indicates the completion of the installer or application setup.

If the function is called during the installer startup phase, the page will reload and the application will launch. If called during the setup phase, it will trigger the handlers for BX24.init. In other cases, there will be no effect from the call.

No parameters.

Example

document.addEventListener("DOMContentLoaded", function() {
            BX24.init(function(){
                BX24.installFinish();
            });
        });
        

Continue your study