(sorry if it is duplicate, i didn't a notification about delayed messages)
Hi,
I'm currently receiving this error while trying to create a new account/customer with the API: [ManagedCustomerServiceError.FRAUDSTER_CANNOT_ADD_CLIENTS @ operations[0]]
Old thread found but with no useful responses:
https://groups.google.com/g/adwords-api/c/gYJv6A2pAwo/m/CQTZlQuhBAAJPHP Code that triggers the error:
$managedCustomerService = (new AdWordsServices())->get($this->getSession($params['adwords_customer_id']), ManagedCustomerService::class);
// Create customer:
$customer = new ManagedCustomer();
$customer->setName($params['name']);
$customer->setCurrencyCode($params['currencyID']);
$customer->setDateTimeZone($params['time_zone']);
// Create operation:
$operation = new ManagedCustomerOperation();
$operation->setOperator('ADD');
$operation->setOperand($customer);
$operations = array($operation);
try {
if($result = $managedCustomerService->mutate($operations)) return $result->getValue()[0];
}
catch (Exception $e) {
vd($e->getMessage());
}
Can you help me? Ongoing business,
Thanks