• Модуль: calendar
  • Путь к файлу: ~/bitrix/modules/calendar/lib/sync/office365/apiservice.php
  • Класс: Bitrix\Calendar\Sync\Office365\ApiService
  • Вызов: ApiService::deleteEvent
public function deleteEvent(string $vendorEventId)
{
	try
	{
		$this->apiClient->delete(
			'me/events/' . $vendorEventId,
		);
	}
	catch (NotFoundException $exception)
	{
		return;
	}
}