Note: {@link ManagedCustomerOperation}only supports {@code ADD} operator.
operations
6061626364656667686970
operation.setOperator(Operator.ADD); ManagedCustomerOperation[] operations = new ManagedCustomerOperation[] {operation}; // Add account. ManagedCustomerReturnValue result = managedCustomerService.mutate(operations); // Display accounts. for (ManagedCustomer customerResult : result.getValue()) { System.out.println("Account with customer ID \"" + customerResult.getCustomerId() + "\" was created.");