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!
09-25-2015 11:26 AM
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:
09-28-2015 10:12 AM
09-28-2015 11:20 AM
Thanks RichardH, yes I tried it, and I got the same error as I mentioned above.
09-28-2015 11:26 AM
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
09-28-2015 11:54 AM
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.
10-05-2015 09:25 AM
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?
10-06-2015 09:19 AM