• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/vendorsyncservice.php
  • Класс: Bitrix\Calendar\Sync\Office365\VendorSyncService
  • Вызов: VendorSyncService::createEvent
public function createEvent(EventDto $dto, string $sectionId): ?EventDto
{
	if ($newEvent = $this->apiService->createEvent($dto, $sectionId))
	{
		return new EventDto($newEvent);
	}

	return null;
}