PHP Classes

File: examples/reporting/getTransactionListRequest.php

Recommend this page to a friend!
  Classes of John Conde   PHP Authorize.net Integration with JSON API   examples/reporting/getTransactionListRequest.php   Download  
File: examples/reporting/getTransactionListRequest.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Authorize.net Integration with JSON API
Process online payments with Authorize.net API
Author: By
Last change: Removed style="text/css" from examples
Updated namespacing to be PSR-0/4 compliant
Improved example to show how more data is accessed
Date: 1 year ago
Size: 4,164 bytes
 

Contents

Class file image Download
<?php

/*
 * This file is part of the AuthnetJSON package.
 *
 * (c) John Conde <stymiee@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/*************************************************************************************************

Use the Transaction Details API to get a list of transaction in a batch

SAMPLE REQUEST
--------------------------------------------------------------------------------------------------
{
   "getTransactionListRequest":{
      "merchantAuthentication":{
         "name":"",
         "transactionKey":""
      },
      "batchId":"1221577"
   }
}

SAMPLE RESPONSE
--------------------------------------------------------------------------------------------------
{
   "transactions":[
      {
         "transId":"2162566217",
         "submitTimeUTC":"2011-09-01T16:30:49Z",
         "submitTimeLocal":"2011-09-01T10:30:49",
         "transactionStatus":"settledSuccessfully",
         "invoiceNumber":"60",
         "firstName":"Matteo",
         "lastName":"Bignotti",
         "accountType":"MasterCard",
         "accountNumber":"XXXX4444",
         "settleAmount":1018.88,
         "marketType":"eCommerce",
         "product":"Card Not Present",
         "hasReturnedItemsSpecified":false
      }
   ],
   "messages":{
      "resultCode":"Ok",
      "message":[
         {
            "code":"I00001",
            "text":"Successful."
         }
      ]
   }
}

*************************************************************************************************/

namespace Authnetjson;

use
Exception;

require
'../../config.inc.php';

try {
   
$request = AuthnetApiFactory::getJsonApiHandler(
       
AUTHNET_LOGIN,
       
AUTHNET_TRANSKEY,
       
AuthnetApiFactory::USE_DEVELOPMENT_SERVER
   
);
   
$response = $request->getTransactionListRequest([
       
'batchId' => '7864228'
   
]);
} catch (
Exception $e) {
    echo
$e;
    exit;
}
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Transaction Detail :: Get Transactions List</title>
    <style>
        table { border: 1px solid #cccccc; margin: auto; border-collapse: collapse; max-width: 90%; }
        table td { padding: 3px 5px; vertical-align: top; border-top: 1px solid #cccccc; }
        pre { white-space: pre-wrap; }
        table th { background: #e5e5e5; color: #666666; }
        h1, h2 { text-align: center; }
    </style>
</head>
<body>
    <h1>
        Transaction Detail :: Get Transactions List
    </h1>
    <h2>
        Results
    </h2>
    <table>
        <tr>
            <th>Response</th>
            <td><?= $response->messages->resultCode ?></td>
        </tr>
        <tr>
            <th>Successful?</th>
            <td><?= $response->isSuccessful() ? 'yes' : 'no' ?></td>
        </tr>
        <tr>
            <th>Error?</th>
            <td><?= $response->isError() ? 'yes' : 'no' ?></td>
        </tr>
        <tr>
            <th>Code</th>
            <td><?= $response->messages->message[0]->code ?></td>
        </tr>
        <tr>
            <th>Message</th>
            <td><?= $response->messages->message[0]->text ?></td>
        </tr>
        <?php foreach ($response->transactions as $transaction) : ?>
<tr>
            <th>Transaction</th>
            <td>
                transId: <?php echo $transaction->transId; ?><br>
                submitTimeUTC: <?php echo $transaction->submitTimeUTC; ?><br>
                submitTimeLocal: <?php echo $transaction->submitTimeLocal; ?><br>
                transactionStatus: <?php echo $transaction->transactionStatus; ?><br>
                invoiceNumber: <?php echo $transaction->invoiceNumber; ?><br>
                firstName: <?php echo $transaction->firstName; ?><br>
                accountType: <?php echo $transaction->accountType; ?><br>
                accountNumber: <?php echo $transaction->accountNumber; ?><br>
                settleAmount: <?php echo $transaction->settleAmount; ?><br>
            </td>
        </tr>
        <?php endforeach; ?>
</table>
    <h2>
        Raw Input/Output
    </h2>
<?= $request, $response ?>
</body>
</html>