Get Single Transaction
Endpoint
GET {{}}/v1/accounts/transactions/<transaction_id>
Description
This endpoint is used to get a single transaction's details.
URL Parameters
transaction-id (string): The transaction ID of the transaction request you want to retrieve.
Response
On success, the API will return a JSON object containing the details of a single transaction.
{
"status": true,
"senderIban": "GB1212234555555555",
"senderName": "test user",
"senderBic": "ARPYGB21XXX",
"recipientIban": "GB1212234555555556",
"recipientName": "Test Account",
"recipientBic": "ARPYGB21XXX",
"recipientBankAddress": "Test address",
"recipientBankCountry": "United Kingdom",
"amount": 300,
"reference": "reference",
"type": "DEBIT",
"centrolinkRef": "ARPY1AX",
"status": "PENDING",
"createdAt": "2024-11-03T19:12:22.952625Z",
}
Last updated