Documentation

imopenlines.config.get

The method allows to get Open Channel by its ID.

Параметры

Parameter Description Available from version
CONFIG_ID Open Channel ID (required)
WITH_QUEUE Show list of Open Channel operators (Y/N, by default: Y)
SHOW_OFFLINE Enable showing list the offline Open Channel operators (Y/N, by default: Y)

Examples

//imopenlines.config.get
function configGet()
{
	var params = {
		CONFIG_ID:    1,
		WITH_QUEUE:   'Y',
		SHOW_OFFLINE: 'Y'
	};
	BX24.callMethod(
		'imopenlines.config.get',
		params,
		function (result) {
			if (result.error())
				alert("Error: " + result.error());
			else
				alert("True: " + result.data());
		}
	);
}
© «Bitrix24», 2001-2024
Up