Account Transactions
This endpoint allows you to retrieve transactions of a specific virtual account created
POST
https://api.oneappgo.com/v1/vaccount-trans
Headers
Name
Type
Description
authorization*
String
SECRET_KEY
Request Body
Name
Type
Description
trackingid*
String
virtual account tracing id or account number
{
"status": true,
"responsecode": "01",
"msg": "Transaction Retrieved",
"data": [
{
"actno": "0609876113",
"bankname": "Providus Bank",
"amount": "90000.75",
"amount_settled": "89999.00",
"transfertype": "providus",
"sessionID": "202602600132307000002",
"transstat": "01",
"currency": "NGN",
"transDate": ""
},
{
"actno": "0609876113",
"bankname": "Providus Bank",
"amount": "190000.75",
"amount_settled": "189999.00",
"transfertype": "providus",
"sessionID": "230700020260260013002",
"transstat": "01",
"currency": "NGN",
"transDate": ""
}
]
}
Take a look at how you might do this:
curl --location 'https://api.oneappgo.com/v1/vaccount-trans' \
--header 'Authorization: Bearer SECRET_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
"trackingid": "2727"
}'
Last updated
Was this helpful?