Retrieve transaction data
Retrieve transaction data
Query Parameters
- fromDate string
Retrieve transaction data from date, format: YYYY-MM-DD
- toDate string
Retrieve transaction data to date, format: YYYY-MM-DD
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
- requestId string required
transactions TransactionData[]
Array [reference string requiredTransaction reference as provided by the financial institution.
transactionDate string requiredTransaction date. Also known as valueDate
transactionDateTime string nullableTransaction date and time. Also known as valueDateTime. Format: YYYY-MM-DDTHH:mm:ssZ
bookingDate string nullableThe date and time when the transaction was posted on the financial institution’s books
amount number requiredExact transaction amount
description string requiredAvailable detailed transaction descriptions
runningBalance number nullableBalance after operation
accountNumber string requiredBank account number
virtualAccountNumber string nullableVirtual account number
virtualAccountName string nullableVirtual account name
paymentChannel string nullablePayment channel. Possible values: Napas247 | Nội bộ | Citad | Swift
counterAccountNumber string nullableCounter account number
counterAccountName string nullableCounter account name
counterAccountBankId string nullableThe bank's BIN of the counterpart's account
counterAccountBankName string nullableCounter account bank name
]accounts AccountData[]
Array [accountNumber string requiredBank account number
accountName string requiredBank account name
currency string requiredCurrency
balance number requiredBalance
]
{
"requestId": "string",
"transactions": [
{
"reference": "string",
"transactionDate": "string",
"transactionDateTime": "2023-12-28T15:53:26+07:00",
"bookingDate": "string",
"amount": 0,
"description": "string",
"runningBalance": 0,
"accountNumber": "string",
"virtualAccountNumber": "string",
"virtualAccountName": "string",
"paymentChannel": "string",
"counterAccountNumber": "string",
"counterAccountName": "string",
"counterAccountBankId": "string",
"counterAccountBankName": "string"
}
],
"accounts": [
{
"accountNumber": "string",
"accountName": "string",
"currency": "string",
"balance": 0
}
]
}