I am attempting to move a client account from under sub MCC 0 to sub MCC1. The following code is below.
Currently getting the following error: [0] => [ManagedCustomerServiceError.UNSUPPORTED @ operations[0]].
Any help would be appreciated.
$managedCustomerService = $user->GetManagedCustomerService(ADWORDS_VERSION);
$moveAccountlink = new ManagedCustomerLink();
$moveAccountlink->clientCustomerId=####;
$moveAccountlink->linkStatus='ACTIVE';
$moveAccountlink->managerCustomerId=#####;
$moveAccountOp = new MoveOperation();
$moveAccountOp->operator='SET';
//$moveAccountOp->pendingDescriptiveName = "j";
$moveAccountOp->oldManagerCustomerId=#####;
$moveAccountOp->operand =moveAccountLink;
$moveAccountOps = array($moveAccountOp);