Settlement Batch Summaryanchor

Server-side response object returned directly or within a successful result object from the following requests:
Attributes

An array of maps representing settlement batches.

Examplesanchor

Generating Settlement Batch Summaryanchor

  1. PHP
$today = new Datetime;
$result = $gateway->settlementBatchSummary()->generate(
  $today->format("Y-m-d"),
  "custom_field_1"
);

if ($result->success) {
  var_dump($result->settlementBatchSummary->records);
}

Records data structureanchor

Below is an example of the data structure returned by records.

  1. PHP
(
    [0] => Array
        (
            [kind] => sale
            [cardType] => Mastercard
            [merchantAccountId] => your_merchant_account_id
            [count] => 1
            [amountSettled] => 100.00
            [custom_field_1] => your_first_custom_value
        )

    [1] => Array
        (
            [kind] => sale
            [cardType] => Mastercard
            [merchantAccountId] => your_merchant_account_id
            [count] => 5
            [amountSettled] => 250.00
            [custom_field_1] => your_second_custom_value
        )

)