I need to get an extraction of our active ARBs. ARBGetSubscriptionListRequest has almost all the details, but I cannot find a way to have it return all of the fields related to the ARB; specifically the interval (e.g., 1 x per month), the execution date (e.g., the 5th of each month), and the last 4 digits of the routing # if it is an eCheck. How do I retrieve this?
04-30-2025 02:17 PM
Never mind. We're going to code something to loop using the ARBGetSubscription request to pull all the details of each ARB.
05-02-2025 03:10 PM
To retrieve the missing details such as the interval, execution date, and the last 4 digits of the routing number for eChecks, you may need to use additional API calls or adjust the ARBGetSubscriptionListRequest request.
Interval and Execution Date: These may be available in the subscription details. You could check the ARBGetSubscriptionDetailsRequest or similar methods to get more specific information about the schedule.
Routing Number: For the last 4 digits of the routing number, you might need to use the ARBGetSubscriptionDetailsRequest along with specific parameters to retrieve payment details like routing numbers.
06-20-2025 04:35 AM
If ARBGetSubscriptionListRequest doesn't return full interval or payment details, have you tried using ARBGetSubscriptionRequest for each subscription ID from the list to pull the complete info, including interval, execution date, and payment method details?
07-31-2025 11:58 PM