Persons
This endpoint returns the list of customers on the application
Get persons (customers)
GET https://<your_business_alias>.lenda.ng/ias/loan/persons
Query Parameters
Name
Type
Description
pageNumber
string
Specify exactly what page you want to retrieve
pageSize
string
Specify how many records you want to retrieve per page
searchParameter
string
Search customer's by first name, last name or email address
Headers
Name
Type
Description
Authentication*
string
The encoded combination of your public key and secret key (see the Test and go live section of the docs)
{
"data": [
{
"personId": 1753,
"firstName": "mary",
"middleName": null,
"lastName": "yam",
"dateOfBirth": "2021-02-01",
"phoneNumber": "0876545545",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210213",
"createdAt": "2021-02-13T11:04:46.1153278"
},
{
"personId": 1752,
"firstName": "James",
"middleName": null,
"lastName": "Pyle",
"dateOfBirth": "2021-02-02",
"phoneNumber": "32323223",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210212",
"createdAt": "2021-02-12T08:50:31.3481443"
},
{
"personId": 1751,
"firstName": "Jordan",
"middleName": null,
"lastName": "Pickford",
"dateOfBirth": "2021-02-04",
"phoneNumber": "3434343443",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210211",
"createdAt": "2021-02-12T08:49:12.5198253"
},
{
"personId": 1746,
"firstName": "Paysta",
"middleName": null,
"lastName": "CK",
"dateOfBirth": "2021-02-03",
"phoneNumber": "08102928811",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210206",
"createdAt": "2021-02-11T06:09:44.0462426"
},
{
"personId": 1736,
"firstName": "UWA",
"middleName": null,
"lastName": "MOHAMMED",
"dateOfBirth": "15-Oct-77",
"phoneNumber": "07066794022",
"emailAddress": "[email protected]",
"bvn": "22247577318",
"personCode": "CUS210201",
"createdAt": "2021-02-03T06:10:59.0139128"
},
{
"personId": 1717,
"firstName": "Olatomiwa",
"middleName": null,
"lastName": "Aduloju",
"dateOfBirth": "2021-02-01",
"phoneNumber": "091010019201",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210120",
"createdAt": "2021-01-26T15:19:15.5866852"
},
{
"personId": 1704,
"firstName": "Paul",
"middleName": null,
"lastName": "Scholes",
"dateOfBirth": "2021-01-01",
"phoneNumber": "09078499365",
"emailAddress": "[email protected]",
"bvn": null,
"personCode": "CUS210119",
"createdAt": "2021-01-24T03:23:42.7097287"
}
],
"status": true,
"message": "Success"
}Last updated
Was this helpful?