Assign to another customer

Requirements
Request parameters
Parameter
Type / Description
Response parameters
Type
Description
Request sample
Last updated
Was this helpful?
Was this helpful?
<?php
require ('PATH_TO_AUTH');
$subscriptionReference = 'YOUR_SUBSCRIPTION_REFERENCE';
$customerReference = CUSTOMER_REFERENCE;
try {
$newCustomerInfo = $client->setSubscriptionCustomer($sessionID, $subscriptionReference, $customerReference);
}
catch (SoapFault $e) {
echo "newCustomerInfo: " . $e->getMessage();
exit;
}
var_dump("newCustomerInfo", $newCustomerInfo);