Home > Blockchain >  Get list of transactions by date range in Authorize.net
Get list of transactions by date range in Authorize.net

Time:11-30

I have been trying to get the list of transactions by date range but couldn't find any API related to Authorize.net

I found transaction list.

Is there any way to get a list by date range or any other custom parameters (except transaction_id)?

CodePudding user response:

Use getSettledBatchListRequest to get the batch IDs for the date range you wish to get a list of transactions for. Then call getTransactionListRequest in a loop and get the transactions for each batch.

  • Related