- Модуль: seo
- Путь к файлу: ~/bitrix/modules/seo/lib/analytics/account.php
- Класс: BitrixSeoAnalyticsAccount
- Вызов: Account::manageAdKeyword
public function manageAdKeyword($accountId, $groupId, $id, $active = true)
{
if (!$this->hasExpensesReport())
{
throw new NotSupportedException('Not supported.');
}
$response = $this->getRequest()->send([
'methodName' => 'analytics.keyword.manage',
'parameters' => [
'accountId' => $accountId,
'groupId' => $groupId,
'id' => $id,
'active' => $active ? 1 : 0,
]
]);
return $response;
}