- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am using the ReportingGateway.GetTransactionList to obtain a history of payment transactions made. For some reason, the CustomerID property on the Transaction objects is always NULL.
However, when we look up the same transactions in a different report, the Customer ID field seems to be populated.
Any insights into why that would be?
Solved! Go to Solution.
โ01-03-2014 03:42 PM
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the Transaction Details API documentation GetTransactionList do not return CustomerID, GetTransactionDetails do.
โ01-03-2014 04:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In case anyone needs to know:
The report where we see Customer IDs is on Authorize.net's web gateway, under "Search by Batch" and downloading as a "Standard/Tab Delimited" file.
โ01-03-2014 03:55 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
In the Transaction Details API documentation GetTransactionList do not return CustomerID, GetTransactionDetails do.
โ01-03-2014 04:45 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Ah, I see. So, I have to call GetTransactionDetails for the Transaction ID of every item in the list to get that field. Thanks!
โ01-04-2014 09:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I just wanted to mention one more minor thing: It seems Transaction Details does NOT return the first or last name of the of the person who made the payment, but Transaction List DOES. I can deal with that. But, I just think it's odd, and might be noteworthy to someone else.
โ01-04-2014 03:09 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Could be a bug with the SDKs.
โ01-04-2014 04:08 PM