Customer Transaction History
This endpoint retrieves the transaction history by the virtual account number.
URL: https://developer-sandbox.accessbankplc.com/virtualpaycorporate/CustomerTransactionHistory
Method: POST
Request Parameters
| Type | Name | Parameter Required | Description |
|---|---|---|---|
| string | virtual_acc_no | Required | Breezepay virtual account number |
| string | channel_code | Required | Client application code |
Sample Request
{
"virtual_acc_no": "1509600498",
"channel_code": "CHANNEL CODE"
}
Sample Response
{
"response_code": "00",
"response_message": "Successful Request",
"response_data": {
"transactions": [
{
"currency": "NGN",
"customer_id": "JONDOE",
"merchant_id": " YOUR MERCHANT ID ",
"virtual_account_no": "1444624548",
"virtual_account_name": "JON DOE",
"captured_datetime": "2022-04-06T15:08:07Z",
"completed_datetime": "2022-04-06T15:08:07Z",
"transaction_status": "COMPLETED",
"amount_paid": "5000",
"source_account_name": "JON DOE",
"source_account": "0030181692",
"source_bank": "Access Bank",
"source_inst_code": "000014",
"session_id": "TST326432453456952222",
"transaction_type": "CREDIT"
}
]
}
}
