Get Single Transaction
Endpoint
GET {{base_url}}/v1/accounts/transactions/<transaction_id>?currency=<currency_code>Description
This endpoint is used to get a single transaction's details by the transaction ID.
URL Parameters
transaction-id (string): The transaction ID of the transaction request you want to retrieve.
Query parameters
currency_code (string): The currency code of the accounts you want to retrieve, i.e. EUR or GBP.
NB: This parameter is required when making use of this endpoint
Response
On success, the API will return a JSON object containing the details of a single transaction.
{
"status": true,
"message": "Transaction data",
"data": {
"id": "d1678954-d30c-4870-895d-e52111d4fa32",
"senderAccountNumber": "0000XXXX",
"senderName": "ConfixHub GBP Test",
"senderSortCode": "041917",
"beneficiaryAccountNumber": "6294XXXX",
"beneficiaryName": "Test Account",
"beneficiarySortCode": "040075",
"amount": 1,
"currency": "GBP",
"reference": "adb21234534223sdf",
"narration": "adb21234534223sdf",
"type": "DEBIT",
"fpsRef": "PR17531974XXXXX",
"status": "Completed",
"createdAt": "2025-07-22T15:17:46.117Z"
},
"code": 200
}Last updated
