• Модуль: voximplant
  • Путь к файлу: ~/bitrix/modules/voximplant/lib/model/call.php
  • Класс: BitrixVoximplantModelCallTable
  • Вызов: CallTable::updateWithCallId
static function updateWithCallId($callId, array $fields)
{
	$callId = (string)$callId;
	if($callId == '')
		return;

	$row = static::getRow([
		'select' => ['ID'],
		'filter' => ['=CALL_ID' => $callId]
	]);

	static::update($row['ID'], $fields);
}