Hello,
I've searched the boards and hope I'm not repeating something!
I'm trying to get a list of all transactions ever done on the account, including settled AND including Unsettled, if that's possible. Is there a PHP call to get that, something like
$request = new AuthorizeNetTD;
$response = $request->getUnsettledBatches();
echo count($response->xml->batchList->batch) . " batches\n";
foreach ($response->xml->batchList->batch as $batch) {
echo "Batch ID: " . $batch->batchId . "\n";
}
Thanks much!
06-10-2011 10:49 AM