Current I'm exporting all ARB data by calling API to get all active ARB ids then go through each ARB id to get info stored in each ID. But this process is too long and it makes lots of requests. Is there any way so that I can get all active ARB ids data in one request like that of any database?
This function gives only small amount data while I need complete data stored in a profile like this one: https://developer.authorize.net/api/reference/index.html#recurring-billing-get-subscription But this function only works for single ID.
New Answer
No. The
ARBGetSubscriptionListRequestonly returns a limited amount of information. If you want detailed information you would need to callARBGetSubscriptionListRequestand then loop through the results and make an API call for each subscription to get the more granular data.Due to the potentially large amount of results, you probably should store the results in a database and then have a bunch of scheduled scripts make the subsequent API calls.
Old Answer
Yes. You can call
ARBGetSubscriptionListRequest.Request:
Response: