• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/integration/controller/base.php
  • Класс: BitrixRestIntegrationControllerBase
  • Вызов: Base::exists
protected function exists($id)
{
	$r = new BitrixMainResult();
	if(isset($this->get($id)['ID']) == false)
		$r->addError(new Error('Entity is not exists'));

	return $r;
}