• Модуль: messageservice
  • Путь к файлу: ~/bitrix/modules/messageservice/lib/restservice.php
  • Класс: BitrixMessageServiceRestService
  • Вызов: RestService::getUserId
static function getUserId(): int
{
	global $USER;
	if (isset($USER) && $USER instanceof CUser)
	{
		return (int)$USER->getID();
	}
	return 0;
}