If I call ARBUpdateSubscription and update a card's expiration date, when I view the subscription information in the merchant admin panel the expiration date is masked (XX). Is there some way to view this information to ensure that my ARBUpdateSubscription code is working properly and actually updating this information?
Thanks!
08-10-2011 06:18 PM
I doubt it. However, the update process should return a result code that you can test for success or failure. For instance, I'm using the PHP API:
$result = $authorize->updateSubscription($id, $subscriptiondata); if ($result->xml->messages->resultCode != 'Ok') // Error happened, do something
08-10-2011 10:12 PM