Get Batch History API Response Object
The description of the Get Batch History API response object
The Get Batch History API returns a response in standard JSON format. The following table lists the properties of a Get Batch History API response:
Top-Level Properties
Property | Description |
---|---|
success | Whether or not the API call succeeded. |
content | The content subobject. |
errors | The errors subobject array if any. |
content
Subobject
content
SubobjectProperty | Description |
---|---|
batchNbr | The merchant-specific batch number. |
merchantNbr | The merchant number. |
openDate | The date and time the batch was opened. |
closeDate | The date and time the batch was closed. |
totalAmount | The total sum of all transactions currently in the batch. |
txnsInBatch | The number of transactions in the batch. |
status | The status of the batch, which is always Closed . |
transactions | The transactions subobject array. |
transactions
Subobject (Array)
transactions
Subobject (Array)Property | Description |
---|---|
txnNbr | The system-generated transaction number. |
authorizationNbr | The unique authorization number of the transaction. |
externalInvoiceNbr | The merchant’s invoice number. |
amount | The total transaction amount. |
txnType | The type of transaction, which is always Sale . |
txnStatus | The transaction status, which can be Approved , Disputed or Resolved . |
datePosted | The invoice creation date. |
cardNbr | The last four digits of the card that was processed with the transaction. |
rebillInvoiceNbr | Reserved for internal use. |
tailNbr | The tail number of the aircraft associated with the transaction. |
branchOfService | The branch of service associated with the card that was processed with the transaction. |
details | Reserved for internal use. |
isPPSPOS | Whether the origin of the transaction was the PPS POS. |
errors
Subobject (Array)
errors
Subobject (Array)Property | Description |
---|---|
code | The error code. |
message | The error message. |
You can find examples of this response object here.
Updated 5 months ago