• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/engine/access/loadlimiter.php
  • Класс: BitrixRestEngineAccessLoadLimiter
  • Вызов: LoadLimiter::getKey
static function getKey($entityType, $entity, $method, $bucketNum = null): string
{
	return
		static::getDomain() . '|v' . static::$version . '|'
		. sha1($entityType . '|' .$entity . '|' . $method)
		. '|' . $bucketNum;
}