Skip to main content

Fetch Customer Details

This endpoint retrieves customer details using the virtual account number or customer ID.

URL: https://developer-sandbox.accessbankplc.com/virtualpaycorporate/FetchCustomerDetails

Method: POST

Request Parameters

TypeNameParameter RequiredDescription
stringchannel_codeRequiredClient application code
stringvirtual_account_noBreezepay virtual account number
stringcustomer_idRequiredUnique ID for the customer on client system
stringmerchant_idRequiredID of the merchant

Sample Request

{ 
"virtual_account_no": "1509600498",
"merchant_id": " YOUR MERCHANT ID ",
"customer_id": "jondoe@GMAIL.COM",
"channel_code": "YOUR CHANNEL CODE"
}

Sample Response

{
"response_code": "00",
"response_message": "Successful Request",
"response_data": {
"customer_id": "jondoe@GMAIL.COM",
"customer_name": "JON DOE",
"virtual_account_no": "1509600498",
"virtual_account_name": "MERCHANTID- JON DOE",
"customer_status": "ENABLED"
}
}