Reports
Settlement Batch Summaries
- PHP
$today = new Datetime;
$result = $gateway->settlementBatchSummary()->generate(
$today->format("Y-m-d"),
"custom_field_1"
);
if ($result->success) {
var_dump($result->settlementBatchSummary->records);
}
Arguments
- The date on which the batches were settled.
- Optional The custom field you wish to aggregate the results by.
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
)
)