• Модуль: sender
  • Путь к файлу: ~/bitrix/modules/sender/lib/integration/voximplant/service.php
  • Класс: Bitrix\Sender\Integration\VoxImplant\Service
  • Вызов: Service::onInfoCallResult
static function onInfoCallResult($callId, $callData)
{
	if (!is_array($callData))
	{
		$callData = array();
	}

	$recipientId = CallLogTable::getRecipientIdByCallId($callId);
	if ($recipientId && isset($callData['RESULT']) && $callData['RESULT'])
	{
		PostingManager::read($recipientId);
	}

	CallLogTable::removeByCallId($callId);
}