Remove scheduled subscription changes
Delete subscription changes scheduled to be applied at the end of the billing cycle. Use the removeScheduledProductUpdate method to remove the changes.
Parameters
Parameters
Type/Description
Response
Parameters
Type/Description
Request
<?php
require ('PATH_TO_AUTH');
$subscriptionReference = 'YOUR_SUBSCRIPTION_REFERENCE';
try {
$scheduledProductUpdate = $client->removeScheduledProductUpdate($sessionID, $subscriptionReference);
} catch (SoapFault $e) {
echo "removeScheduledProductUpdate: " . $e->getMessage();
exit;
}
var_dump("removeScheduledProductUpdate", $scheduledProductUpdate);FAQ:
Last updated
Was this helpful?