Using anet_dotnet_sdk-1.5.0 in C# VS 2008 Pro, all sources loaded into solution
using the Transaction Details API
Modified the QuickStart SampleReporting application
var gate = new ReportingGateway("myid", "mykey", ServiceMode.Live);
DateTime to = DateTime.Today;
DateTime from = DateTime.Today.AddDays(-7);
var transactions = gate.GetTransactionList(from, to);
foreach (var trans in transactions) {
var detail = gate.GetTransactionDetails(trans.TransactionID);
etc
Which does return most of the transaction details.
For example, trans id, amount, submit/settle dates, names, address, etc.
So far I've not yet found any property with a description of what was bought.
For us, this is kind of huge.
So I have one for US$60, settled authcapture, no line items, no description
What I;m wondering is, is the data in the XML response and has been overlooked by the sdk code,
or is the description data not being returned at all?