Reports
Settlement Batch Summaries
- C#
var result = gateway.SettlementBatchSummary.Generate(
DateTime.Now,
"custom_field_1"
);
if (result.IsSuccess())
{
List<IDictionary<String,String>> records = result.Target.Records;
Console.Write(records);
}
Arguments
- The date on which the batches were settled.
- Optional The custom field you wish to aggregate the results by.