Get Accounts by CustomerID
This returns a list of all the account a customer has
Overview
To get a customers accounts you need to first build the complete url by by passing authtoken ,version , and customerId to the url query params.
Then you make a get request to the complete get customer ID url.
This is a Core API
{
"address": "4 Samuel Fasanya Street Akure",
"age": "29",
"BVN": "2008909888",
"branchCode": "",
"customerID": "000204",
"dateOfBirth": "7/25/1994 12:00:00 AM",
"email": "",
"gender": "Female",
"localGovernmentArea": "Ikorodu ",
"name": "Adeniyi, Adejoke Lamidi ",
"phoneNumber": "08166326883",
"state": "Lagos ",
"Accounts": [
{
"accessLevel": "1",
"accountNumber": "03560011020000204",
"accountStatus": "Dormant",
"accountType": "SavingsOrCurrent",
"availableBalance": "521.12",
"branch": "Head Office",
"customerID": "000204",
"accountName": "Adeniyi, Adejoke Lamidi",
"productCode": "102",
"dateCreated": "1/9/2018 5:19:50 PM",
"lastActivityDate": "1/8/2018 12:00:00 AM",
"ledgerBalance": "521.12",
"NUBAN": "1100002047",
"referenceNo": "",
"withdrawableAmount": "21.12",
"kycLevel": "3"
},
{
"accessLevel": "1",
"accountNumber": "03560011060000204",
"accountStatus": "Active",
"accountType": "SavingsOrCurrent",
"availableBalance": "20.00",
"branch": "Head Office",
"customerID": "000204",
"accountName": "Adeniyi, Adejoke Lamidi ",
"productCode": "106",
"dateCreated": "1/12/2018 2:07:47 PM",
"lastActivityDate": "2/2/2018 12:00:00 AM",
"ledgerBalance": "20.00",
"NUBAN": "1200002040",
"referenceNo": "",
"withdrawableAmount": "20.00",
"kycLevel": "3"
}
]
You can check out API reference to Get Accounts by CustomerID
Updated over 1 year ago