Documentation

imopenlines.config.update

The method is used to updates Open Channels.

Parameters

Method Description Available from version
CONFIG_ID Open Channel ID (optional)
PARAMS Array of parameters List of possible parameters is identical to the list of imopenlines.config.add. method parameters for update (optional)

Example

	//imopenlines.config.update
	function configUpdate()
	{
		var params = {
			CONFIG_ID: 1,
			PARAMS: {
				LINE_NAME: 'New channel name',
				...
			}
		};
		BX24.callMethod(
			'imopenlines.config.update',
			params,
			function (result) {
				if (result.error())
					alert("Error: " + result.error());
				else
					alert("True: " + result.data());
			}
		);
	}


© «Bitrix24», 2001-2024
Up