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/CQTZlQuhBAAJ

PHP 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

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/74621b01-2bb2-46cd-a3bf-50f07512357en%40googlegroups.com.

Reply via email to