cancel
Showing results for 
Search instead for 
Did you mean: 

GetARBSubscriptionList and GetARBSubscriptionStatus

Hello,

I was looking at the document  from http://developer.authorize.net/api/arb/ which claims GetARBSubscriptionList  is included however I couldn't find a way with Merchant to use it. Is it available in latest version (1.8.2) at all? I saw the source class and test, but they don't work for me.

 

Also, is there any way I can retrieve previous status of ARB? E.g. if a subscriber changes status from inactive to active or from suspended to inactive, is there anyway I can tell?

 

Thanks!

arbTester
Member
6 REPLIES 6

I was trying the New Model here: https://github.com/AuthorizeNet/sdk-java/

 

However, whenever I use controllers such as:

 

CreateTransactionController controller = new CreateTransactionController(apiRequest);

        controller.execute();

 I always get null response and errors like:

 

[error] n.a.u.HttpUtility - Execution error for http post Message: 'java.lang.Ar
rayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy'
 
Any developers have idea like this?
 
Thanks!
arbTester
Member

Thanks RichardH, yes I tried it, and I got the same error as  I mentioned above.

I would suggest reporting an issue on GitHub which will notify the developer working on this directly so they can find and fix the problem.


Richard

Updated the code to 1.8.6 and it worked.

The build file of code has the outdated build number of 1.8.2 that's why I took it wrong.

Thanks.

I solved that issue by updating to latest code.

 

However, regarding ARBGetSubscriptionListRequest, I know paging is required, but I'm not sure how it works. If I set limit = 1000 and offset = 1, does it mean I get the 1st page only? What if there are 1005 items? Can I retrieve all in one page or do I have to retrieve page by page?