Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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!
08-10-2011 06:18 PM
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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