• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/analytics/account.php
  • Класс: BitrixSeoAnalyticsAccount
  • Вызов: Account::manageAdGroup
public function manageAdGroup($accountId, $id, $active = true)
{
	if (!$this->hasExpensesReport())
	{
		throw new NotSupportedException('Not supported.');
	}

	$response = $this->getRequest()->send([
		'methodName' => 'analytics.group.manage',
		'parameters' => [
			'accountId' => $accountId,
			'id' => $id,
			'active' => $active ? 1 : 0,
		]
	]);

	return $response;
}