• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/apiservice.php
  • Класс: BitrixCalendarSyncOffice365ApiService
  • Вызов: ApiService::getEventList
public function getEventList(array $params): array
{
	$response = $this->apiClient->get(
		'me/calendars/' . $params['filter']['section_id'] . '/events',
		$params
	);

	return (array) $response['value'];
}