Get Application Settings BX24.appOption.get
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.appOption.get(string name, mixed value): mixed;
The method BX24.appOption.get returns a setting by its code.
Method Parameters
Required parameters are marked with *
|
Name |
Description |
|
name* |
Parameter code |
Code Examples
BX24.init(() => {
BX24.appOption.set('param_str', 'str1', (params) => console.log(params));
BX24.appOption.set('param_numb', 1);
console.log(BX24.appOption.get('param_str')); //will return str1
console.log(BX24.appOption.get('param_numb'));//will return 1
});
How to Use Examples in Documentation
Continue Learning
Was the article helpful?
Previous