Get All Linked Accounts
As a lending business using CreditChek's Income Insight product, this endpoint allows your business to pull ALL bank accounts linked(Bank statements uploaded) and assessed by your business within CreditChek's infrastructure, thus aiding easier internal audit and record-keeping on the total number of Income Insight assessments performed on the API/SaaS platform.
POST: https://api.creditchek.africa/v1/income/linked-account
Request Parameters
Name | Position | Required | Description |
---|---|---|---|
token | Headers | True | app public key |
appId | body | True | unencrypted app ID |
Example Request
---
curl --location --request POST 'https://api.creditchek.africa/v1/income/linked-account' \
--data-raw '{
"appId" : "6287757348cc6c0013f4e0c2"
}'
---
Response
{
"status": "success",
"message": "success",
"data": [
{
"fullname": "Josh",
"gender": "Male",
"emails": ["[email protected]"],
"phones": ["+2349014642748"],
"bvn": "22357999601",
"businessId": "6287757348cc6c0013f4d0a0",
"_id": "62c2c434c58230a45dce150a",
"maritalStatus": "Single",
"accounts": [
{
"institution": {
"name": "fcmb",
"bankCode": "214",
"type": "PERSONAL_BANKING"
},
"accountName": "AKINWOLERE LUCIA OLATUNDE",
"accountNumber": "2214649016",
"borrowerId": "62c2c434c58230a45dce150a",
"source": "pdf"
},
{
"institution": {
"name": "zenithbank",
"bankCode": "057",
"type": "PERSONAL_BANKING"
},
"accountName": " TEMITOPE OLAOLUWA KAMISICurrent Account Statement",
"accountNumber": " 2404302348",
"borrowerId": "62c2c434c58230a45dce150a",
"source": "pdf"
},
{
"institution": {
"name": "gtbank",
"bankCode": "058",
"type": "PERSONAL_BANKING"
},
"accountName": "ESTHER JOHN",
"accountNumber": "0178456417",
"borrowerId": "62c2c434c58230a45dce150a",
"source": "pdf"
},
{
"institution": {
"name": "gtbank",
"bankCode": "058",
"type": "PERSONAL_BANKING"
},
"accountName": "ITOHO AGBO",
"accountNumber": "2085336417",
"borrowerId": "62c2c434c58230a45dce150a",
"source": "pdf"
}
]
},
{
"fullname": "Nugachi",
"gender": "Male",
"emails": ["[email protected]"],
"phones": ["08153468882"],
"bvn": "22357999600",
"businessId": "6287757348cc6c0013f4d0a0",
"_id": "62c315769807240daf39c1dd",
"maritalStatus": "Single",
"accounts": [
{
"institution": {
"name": "accessbank",
"bankCode": "044",
"type": "PERSONAL_BANKING"
},
"accountName": "LIONEL OKEOGHENE ORISHANE",
"accountNumber": "0019683705",
"borrowerId": "62c315769807240daf39c1dd",
"source": "pdf"
},
{
"institution": {
"name": "fcmb",
"bankCode": "214",
"type": "PERSONAL_BANKING"
},
"accountName": "AKINWOLERE LUCIA OLATUNDE",
"accountNumber": "2214649016",
"borrowerId": "62c315769807240daf39c1dd",
"source": "pdf"
},
{
"institution": {
"name": "mono",
"bankCode": "070",
"type": "PERSONAL_BANKING"
},
"accountName": "NUGACHI AGBO",
"accountNumber": "2035316418",
"borrowerId": "62c315769807240daf39c1dd",
"source": "pdf"
}
]
},
{
"fullname": "Poltergeist",
"gender": "Male",
"emails": ["[email protected]"],
"phones": ["08153468882"],
"bvn": "22357999604",
"businessId": "6287757348cc6c0013f4d0a0",
"_id": "62c316c09807240daf39c1ed",
"maritalStatus": "Single",
"accounts": [
{
"institution": {
"name": "fbn",
"bankCode": "011",
"type": "PERSONAL_BANKING"
},
"accountName": "OKOTIE EROMON STELLA MRS",
"accountNumber": "2002275857",
"borrowerId": "62c316c09807240daf39c1ed",
"source": "pdf"
},
{
"institution": {
"name": "providusbank",
"bankCode": "101",
"type": "PERSONAL_BANKING"
},
"accountName": "NUGACHI AGBO",
"accountNumber": "2085336418",
"borrowerId": "62c316c09807240daf39c1ed",
"source": "pdf"
}
]
}
]
}