Currently, i am getting only 20 transactions per pages and can be extends only 200 but i need all transaction between that dates no paging.
Or if it possible to get count of transactions.?
How can i archive?
Thanks
Currently, i am getting only 20 transactions per pages and can be extends only 200 but i need all transaction between that dates no paging.
Or if it possible to get count of transactions.?
How can i archive?
Thanks
Copyright © 2021 Jogjafile Inc.
I would use the following to retrieve all transactions for a subscription:
That should get all the transactions and merge them all into the single dictionary. :) If need to use dates, then just switch the data retrieval line to something like this:
var transactions = chargify.GetTransactionsForSubscription(activeSubscription.SubscriptionID, counter++, 20, null, int.MinValue, int.MinValue, DateTime.Today, DateTime.Now);
(just switch to your dates).