getBatchUploadTransactions

Retrieve the transaction details for a Batch Upload.

Description

This method allows you to retrieve the transaction details for a batch upload.

See also pauseBatchUpload, runBatchUpload, createBatchUpload, getBatchStatus

Syntax

( ueSecurityToken Token, string UploadRefNum )

Arguments

Type Name Description
ueSecurityToken Token Merchant security token: used to identify merchant and validate transaction.
string UploadRefNum A unique upload reference number assigned by the gateway.

Return Value

Type Description
array Array of transaction objects of the transactions in the batch upload.

Examples

PHP

For directions on how to set up the WSDL link, create "$token" and "$client", go to PHP Soap How-to.

    try {

      $uploadrefnum='127';
      print_r($tran->getBatchUploadTransactions($sourcekey,$uploadrefnum));

    }

    catch(SoapFault $e) {

      echo $e->getMessage();
      echo "\n\nRequest: " . $tran->__getLastRequest();
      echo "\n\nResponse: " . $tran->__getLastResponse();

    }

Change Log

Version Change
1.7 Added Method.