• Модуль: socialservices
  • Путь к файлу: ~/bitrix/modules/socialservices/classes/general/zoom.php
  • Класс: CSocServZoom
  • Вызов: CSocServZoom::getConferenceById
public function getConferenceById(int $confId): ?array
{
	$conference = null;
	if ($this->getEntityOAuth()->GetAccessToken())
	{
		$conference = $this->getEntityOAuth()->getConferenceById($confId);
	}

	return $conference;
}