Get Transaction Status and Details
Asynchronously retrieve information about payment transactions and TT3 Transactions
Get Status of Transaction Request
GET
https://kernelserver.{env}.haloplus.io/{version}/consumer/QRCode/:reference
Asynchronously get Status of a transactions invoked through a link.
Path Parameters
version*
String
The backend version.
env*
String
The backend environment [dev, qa, prod]
Query Parameters
:reference*
String
The id received when creating the intent transaction
Headers
x-api-key*
String
The API Key retrieved from the Merchant Portal
Transaction Response Descriptions:
qrCodeState
Status of the deeplink created
String (64)
transactionId
ID of the transaction when created
String (UUID v4)
merchantTransactionReference
Reference entered by the merchant
String (255)
status
At what point the transaction is in the transaction flow (ResponseReceivedFromPaymentProvider)
String (64)
disposition
The outcome of the transaction (e.g. Approved)
There are 5 possible values for disposition
:
Approved
- this means we got an approved message back from the processorDeclined
- this means we received a decline from the processorUnableToGoOnline
- this means we couldn't connect to the processor. Essentially a decline, but it tells us the decline is due to a network error, and not a card issueIndeterminate
- this means we either received an error from the processor or no response. This means we are unable to determine the status of the transaction. Typically, we treat these as declines and then we attempt to void the transaction in the background, in the event that the processor got the message but we just didn't get the responseVoided
- the transaction was reversed.
String (32)
amount
Value of transaction (e.g 100.01)
String
currency
Currency of the amount (e.g. ZAR, GBP)
String (3)
type
The type of transaction (e.g. Tap, TT3, Secure card reader)
String (32)
responseCode
The ISO response code of the transaction
Number
createdAt
ISO date when the transaction was created
updatedAt
ISO date when the transaction was last updated
paymentReference
Reference of the transaction provided by customer
String (255)
Get Status of TT3 Transaction
GET
https://kernelserver.{env}.haloplus.io/{version}/consumer/tt3QRCode/:reference
Asynchronously get Status about TT3 transactions invoked through a link.
Path Parameters
version*
String
The backend version.
env*
String
The backend environment [dev, qa, prod]
Query Parameters
:reference*
String
The reference received in the response when the link is created
Headers
x-api-key*
String
The API Key retrieved from the Merchant Portal
TT3 Transaction Response Descriptions:
qrCodeState
Status of the deeplink created
String (64)
transactionId
ID of the transaction when created
String (UUID v4)
status
At what point the transaction is in the transaction flow (ResponseReceivedFromPaymentProvider)
String (64)
disposition
The outcome of the transaction (e.g. Approved)
String (32)
currency
Currency of the amount (e.g. ZAR, GBP)
String (3)
type
The type of transaction (e.g. Tap, TT3, Secure card reader)
String (32)
responseCode
The ISO response code of the transaction
Number
authorisationCode
Message Authorization Code (MAC)
String (MAC Length)
createdAt
ISO date when the transaction was created
updatedAt
ISO date when the transaction was last updated
collectionDay
The day in which the debit order should be collected
Number
creditorABSN
Name of Insurance Company
String
accountNumber
Account number of the customer
String
idNumber
ID number of the customer
String (13)
instalmentAmount
Instalment amount of the Debit Order (e.g. 100.01)
String
instalmentVisibility
both, maximumOnly, instalmentOnly
Enum
maxCollectionAmount
The value of the debit order (100.01)
String
contractReference
Reference of the debicheck transaction provided by customer
String (255)
QRCodeGenerated
Initial call made to create the QR code/URL
QRCodeScanned
Device retrieves the transaction details that were provided when the QR code/URL was generated
TransactionStarted
Performed before reading the card, the device is ready to read card.
TransactionCreated
Card reading completed. Transaction has been sent to gateway.
ResponseReceivedByPhone (Definite Success)
The response from gateway is acknowledged by device.
Status Options:
BadRequestReceived
The request received from the device was badly formatted
RequestReceived
The backend received the transaction request from the device
ErrorFindingConfig
The backend was unable to find config for this transaction
ReadyToSubmitToPaymentProcessor
The transaction is about to be submitted to the payment processor
SubmittedToPaymentProcessor
The transaction has been submitted to the payment processor
NoResponseFromPaymentProcessor
The payment processor did not respond to the payment request
BadResponseFromPaymentProcessor
The payment processor returned an invalid response to the payment request
ResponseReceivedFromPaymentProcessor
The payment processor responded to the request
RespondedToPhone
The transaction outcome was returned to the device
FailedToRespondToPhone
The transaction outcome could not be returned to the device
AcknowledgedByPhone
The device acknowledged the outcome
Response Codes:
The responseCode fields maps to the ISO 8583 response codes
Mapped ISO Response Codes
Get Transactions Details
It is possible to get more information about a transaction asynchronously with an API Call to the Halo Backend.
Let’s take a closer look at the API request.
GET
https://kernelserver.{env}.haloplus.io/{version}/transactions/:id
Asynchronously get details about transactions
Path Parameters
version*
String
The backend version.
env*
String
The backend environment [dev, qa, prod]
Query Parameters
:id*
String
The Transaction ID
Headers
x-api-header*
String
The API Key retrieved from the Merchant Portal
Transaction Details Receipt Data:
Last updated