Reports

Settlement Batch Summariesanchor

The Settlement Batch Summary displays the total sales and credits for each batch for a particular date. The transactions can be grouped by a single custom field's values.

  1. 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);
}

Argumentsanchor

  1. The date on which the batches were settled.
  2. Optional The custom field you wish to aggregate the results by.

See also