• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/app.php
  • Класс: BitrixRestAppTable
  • Вызов: AppTable::uninstall
static function uninstall($appId, $clean = 0)
{
	$appInfo = static::getByClientId($appId);
	if($appInfo)
	{
		CRestUtil::cleanApp($appId, $clean);

		if($appInfo['STATUS'] !== static::STATUS_LOCAL)
		{
			OAuthService::getEngine()->getClient()->unInstallApplication(array(
				'CLIENT_ID' => $appInfo['CLIENT_ID']
			));
		}
	}
}