• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/retargeting/services/audiencegoogle.php
  • Класс: BitrixSeoRetargetingServicesAudienceGoogle
  • Вызов: AudienceGoogle::removeContacts
public function removeContacts($audienceId, array $contacts, array $options)
{
	$response = $this->request->send(array(
		'methodName' => 'audience.removecontacts',
		'parameters' => array(
			'ACCOUNT_ID' => $this->accountId,
			'AUDIENCE_ID' => $audienceId,
			'LIST' => $this->prepareContacts($contacts, $options['type'])
		)
	));

	return $response;
}