Delete an additional field
Use the deleteSubscriptionAdditionalInformationField method to delete the additional information field from a subscription.
Request parameters
Parameter
Type / Description
sessionID
Required (string)
Session identifier, the output of the Login method. Include sessionID into all your requests. 2Checkout throws an exception if the values are incorrect. The sessionID expires in 10 minutes.
SubscriptionReference
Required (string) Unique, system-generated subscription identifier.
fieldName
Required (string) The name of the additional information field. Used for identifying additional information fields.
Request sample
<?php
require('PATH_TO_AUTH');
$subscriptionReference = 'F27CFE06ED';
$fieldName = 'subscription';
try {
$subscriptionInfo = $client->deleteSubscriptionAdditionalInformationField($sessionID, $subscriptionReference, $fieldName);
}
catch (SoapFault $e) {
echo "subscriptionInfo: " . $e->getMessage();
exit;
}
var_dump("subscriptionInfo", $subscriptionInfo);Response parameters
Type
Description
Boolean
true or false depending on whether the additional information field was successfully deleted or not.
Last updated
Was this helpful?