Settlement Batch Summary
Server-side response object returned directly or within a successful result object from the following requests:
Attributes
records
mapAn array of maps representing settlement batches.
Examples
Generating Settlement Batch Summary
- 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 structure
Below is an example of the data structure returned by records.
- 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
)
)