• Модуль: disk
  • Путь к файлу: ~/bitrix/modules/disk/lib/rest/service/storage.php
  • Класс: BitrixDiskRestServiceStorage
  • Вызов: Storage::getStorageById
private function getStorageById($id)
{
	$storage = DiskStorage::getById($id);
	if(!$storage)
	{
		throw new RestException("Could not find entity with id '{$id}'.", RestException::ERROR_NOT_FOUND);
	}

	return $storage;
}