Hi Peter,
thank you for your answer, but when I follow your instruction your adword serveur answers me: "An error has occurred: [ManagedCustomerServiceError.BAD_ID @ operations[0]]".
maybe something is wrong with my code:
```<?php
* @package GoogleApiAdsAdWords
* @subpackage v201605
* @category WebServices
* @copyright 2016, Google Inc. All Rights Reserved.
* Version 2.0
*/
// Include the initialization file
require_once dirname(dirname(dirname(__FILE__))) . '/init.php';
/**
* Runs the example.
* @param AdWordsUser $user the user to run the example with
*/
function CreateAccountExample(AdWordsUser $user) {
// Get the service, which loads the required classes.
$managedCustomerService =
$user->GetService('ManagedCustomerService', ADWORDS_VERSION);
// Create customer.
$customer = new ManagedCustomerLink();
$customer->clientCustomerId = 'XXXXXXXXXX';
$customer->linkStatus = 'ACTIVE';
//$customer->currencyCode = 'EUR';
//$customer->dateTimeZone = 'Europe/London';
// Create operation.
$operation = new LinkOperation();
$operation->operator = 'ADD';
$operation->operand = $customer;
$operations = array($operation);
// Make the mutate request.
$result = $managedCustomerService->mutateLink($operation);
}
?>
```
Best regards
Pierre