Skip to main content

Transfer History

This endpoint gets details of all successful transfers carried out from one wallet to another wallet.

URL: https://developer-sandbox.accessbankplc.com/virtualpayapi/TransferHistory

Method: POST

Request Parameters

TypeNameParameter RequiredDescription
stringchannel_codeRequiredClient application code
stringvirtual_acc_noRequiredBreezepay virtual account number

Sample Request

{
"virtual_acc_no": "1509599972",
"channel_code": "YOUR CHANNEL CODE"
}

Sample Response

{ 

"response_code": "00",

"response_message": "Successful Request",

"response_data": {

"transfers": [

{
"currency": "NGN",
"virtual_account_no": "1509599972",
"transaction_type": "CREDIT",
"dr_merchant_id": " YOUR MERCHANT ID ",
"cr_merchant_id": " YOUR MERCHANT ID ",
"dr_customer_id": "JON.DOE@GMAIL.COM",
"cr_customer_id": "OTAS@MAILINATOR.COM",
"transaction_amount": "360",
"request_date": "2022-06-16T19:28:47.0000000+00:00",
"narration": "Cash Collection",
"transaction_reference": "1655404423",
"transfer_reference": "VPPOS202206161932000050"
},

{
"currency": "NGN",
"virtual_account_no": "1509599972",
"transaction_type": "CREDIT",
"dr_merchant_id": " YOUR MERCHANT ID ",
"cr_merchant_id": " YOUR MERCHANT ID ",
"dr_customer_id": "JON.DOE@GMAIL.COM",
"cr_customer_id": "OTAS@MAILINATOR.COM",
"transaction_amount": "500",
"request_date": "2022-06-16T19:27:54.0000000+00:00",
"narration": "Cash Collection",
"transaction_reference": "1655404372",
"transfer_reference": "VPPOS202206161931000058"
}
]
}
}