• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/zoomcontroller.php
  • Класс: Bitrix\Crm\Controller\ZoomController
  • Вызов: ZoomController::registerStopRecordingsAction
public function registerStopRecordingsAction(int $conferenceId, array $recordingsData)
{
	if (!Loader::includeModule('socialservices'))
	{
		return $this->addError(new Error('Socialservices module is not installed'));
	}
	$updateResult = Recording::onRecordingStopped($conferenceId, $recordingsData);
	if (!$updateResult->isSuccess())
	{
		$this->addErrors($updateResult->getErrors());
	}
	return null;
}