Transaction Summary
Retrieve all transaction-related details for a specific Cards Connect transaction
Transaction summary feature provides a complete view of the transaction details as kept in Cards Connect. It lists all the operations on the transaction with the relevant details, as well as the aggregated amounts for the transaction.
Retrieving Transaction Summary
Transaction summary can be accessed simply by calling passing the transaction identifier to the respective API. The system then returns the transaction details. There are certain fields that might come in handy for various scenarios:
- Amounts: The API returns a total of four properties with the aggregated values of operations possible for a transaction.
authorizedAmount
,capturedAmount
,refundedAmount
, andvoidedAmount
return the current sums for Authorisation, Capture, Refund, and Void respectively. - Additional identifiers: Transaction summary provides access to two additional identifiers that might come handy during dispute resolution. You may get access to the scheme trace id (
schemeTraceId
) that is created by the respective card scheme and RRN(rrn
) for the transaction.
A Reminder on the Usage of Transaction Summary
Although Transaction Summary is a complete package when it comes to retrieving information for a transaction, it might also be an overkill for standard scenarios. We advise you to use the specific GET endpoints to fetch the details of a certain operation such as a Capture or Refund for day-to-day scenarios and call the Transaction Summary if you are unsure of the state of a transaction or you need an additional piece of information that is not accessible via other APIs.
{
"transactionId": "b72805e2-9dcd-4962-a32f-25099e012e78",
"reconciliationId": "e8dd3707-0d8f-4dde-8691-dec639ba6f5e",
"schemeTraceId": "STR56648BB66A5464",
"rrn": "2836149370036",
"authorizedAmount": 500,
"capturedAmount": 500,
"refundedAmount": 500,
"voidedAmount": 0,
"currency": "AUD",
"updatedAt": "2024-06-22T09:52:28.163265Z",
"createdAt": "2024-06-18T03:09:16.1488927Z",
"cardBin": "411111",
"cardLastFour": "1111",
"paymentAccountReference": "4549603215000001",
"authorization": {
"id": "b72805e2-9dcd-4962-a32f-25099e012e78",
"authResponseId": "953019",
"amount": 500,
"outcome": "Succeeded",
"responseCode": "00",
"responseDescription": "Approved or completed successfully",
"CVVResponseCode": "Match",
"AVSResponseCode": Null,
"merchantAdviseCode": Null,
"createdAt": "2024-06-18T03:09:16.1488927Z"},
"captures": [
{
"id": "d8ba4038-e792-47d5-b71c-dd36edfcd406",
"amount": 300,
"outcome": "Succeeded",
"responseCode": "00",
"responseDescription": "Approved or completed successfully",
"createdAt": "2024-07-15T02:09:16.1448927Z"
},
{
"id": "2c32da36-5598-46df-9b76-0cbf8b51e6fa",
"amount": 200,
"outcome": "Succeeded",
"responseCode": "00",
"responseDescription": "Approved or completed successfully",
"createdAt": "2024-06-18T03:09:19.2488927Z"
}
],
"refunds": [
{
"id": "d8ba4038-e792-47d5-b71c-dd36edfcd406",
"schemeTraceId": "MC-S557SD69W66",
"amount": 400,
"outcome": "Succeeded",
"responseCode": "00",
"responseDescription": "Approved or completed successfully",
"createdAt": "2024-06-22T09:52:28.163265Z"
},
{
"id": "2c32da36-5598-46df-9b76-0cbf8b51e6fa",
"schemeTraceId": "MC-S557SD69W66",
"amount": 100,
"outcome": "Succeeded",
"responseCode": "00",
"responseDescription": "Approved or completed successfully",
"createdAt": "2024-06-22T09:52:28.163265Z"
}
],
"void": {},
"statementDescriptor": {
"name": "Woolies Coffee",
"description": "Drinks - Latte",
"url": "https://www.woolworths.com.au",
"phoneNumber": "+61256412985",
"city": "Surry Hills"
},
"threeDSecureData": {},
"wallet": {}
}
Updated 9 days ago