cancel
Showing results for 
Search instead for 
Did you mean: 

Verifying an ARBUpdateSubscription process after changing card expiration date.

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!

swbrains
Member
1 REPLY 1

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

 

TJPride
Expert