Skip to main content

Retrieve Income Data

Description: This endpoint is to retrieves income data for consenting customer.

baseUrl: https://demo.etranzact.com/drs-demo

merchant_Id: 20191103155772

Request Parameters

FieldData TypeRequiredDescription
ReferencestringYesUnique request reference used to identify and track the request.
customerobjectYesContains customer identification and consent details.
customer.bvnstringYesBank Verification Number (BVN) of the customer.
customer.accountNumberstringYesCustomer's bank account number.
customer.bankCodestringYesBank code identifying the financial institution (e.g., 058).
customer.isConsentstringYesIndicates whether the customer has granted consent for the request. 1 = consent given.
PeriodobjectYesDefines the date range for the requested data.
period.fromdate (YYYY-MM-DD)YesStart date of the period for which information is being requested.
period.todate (YYYY-MM-DD)YesEnd date of the period for which information is being requested.
GET {baseurl}/api/v1/retrieve-data
curl `{baseurl}/api/v1/balance-enquiry`
-H "x-Merchant-Id: your_merchant_id"
-H "Authorization: Bearer Token"
-H "Content-Type: application/json"
-d '{
"reference": "REQ-2026-05-11-001",
"customer": {
    "bvn": "12345678901",
    "accountNumber": "2125347370",
    "bankCode": "058",
"isConsent": "1"
},
"period": {
"from": "2025-07-01",
"to": "2026-07-30"
}
}
'