vcatalano / py-authorize

A full-featured Python API for the Authorize.net payment gateway.
MIT License
42 stars 35 forks source link

Recurring.list() only returning one record #66

Open bmeredyk opened 7 years ago

bmeredyk commented 7 years ago

When trying to retrieve a list of ARB Subscriptions no matter how many records are requested with params['paging']['limit'] there is always only one ['subscription_detail'] record included within ['subscription_details'] even if total_num_in_result_set says there should be many more

response = authorize.Recurring.list( dict(search_type = 'subscriptionActive', paging = dict(limit = 1000, offset=1), sorting = dict(orderBy = 'status', orderDescending = False)) )