• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/classes/general/restservice.php
  • Класс: \CCrmRequisiteRestProxy
  • Вызов: CCrmRequisiteRestProxy::entityExists
protected function entityExists(int $entityTypeId, int $entityId): bool
{
	switch ($entityTypeId)
	{
		case CCrmOwnerType::Contact:
			return CCrmContact::Exists($entityId);
		case CCrmOwnerType::Company:
			return CCrmCompany::Exists($entityId);
	}
	return false;
}