Docs
  • Home
  • Introduction
  • Loans
    • New loan application
    • Activate/De-Activate Auto approval
    • Loan Information
    • Active loans
    • Repayment Schedule Calculation
    • Create payment entries
    • Spool repayments due
    • Repayment Activation
      • Remita
    • Auto Disburse
  • Configuration Helpers
  • Create Person
  • Persons
  • Search Customer
  • Loan Types
  • Branches
  • Salesperson
  • Employer & Industry
    • Industries
  • Web-hook Integration
    • Industries
  • Loan Reasons
  • Guides
    • Test and go live
Powered by GitBook
On this page

Was this helpful?

  1. Loans

Active loans

Get detailed information on customers loans and repayment schedules

Spool list of loans

GET https://<your_business_alias>.lenda.ng/ias/loan/loans

Query Parameters

Name
Type
Description

pageSize

integer

Specify how many records you want to retrieve per page

pageNumber

integer

Specify exactly what page you want to retrieve

searchParameter

string

Keyword for searcing loans by their content (Example. Search by loan application code)

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": {
        "pageNumber": 1,
        "totalPages": 8,
        "pageSize": 1,
        "totalCount": 142,
        "hasPreviousPage": false,
        "hasNextPage": true,
        "items": [
            {
                "loanId": 1480,
                "loanCode": null,
                "loanBatchCode": null,
                "applicationCode": "LA210275",
                "fees": 0,
                "buyOverAmount": null,
                "identifier": "cD042vFSn",
                "loanAmount": 10000,
                "loanTenor": 6,
                "status": null,
                "branchName": "Head Quarter",
                "loanTypeName": "Buks Products",
                "customerName": "Fareed Zakar",
                "customerInitials": null,
                "personId": 1770,
                "createdBy": null,
                "createdByName": null,
                "creatorTeam": null,
                "repaymentInfo": null,
                "reviewClaimer": null,
                "createdAt": "2021-02-25T01:42:26.6252335",
                "dateApproverClaimed": null,
                "dateApproverApproved": null,
                "dateDisburserClaimed": null,
                "dateRepaymentApproved": null,
                "dateDisbursed": null,
                "amountRepayed": 0,
                "totalAmountToBeRepayed": 0,
                "loanBalance": 0,
                "amountOutstanding": 0,
                "loanStage": null,
                "amountDisbursed": 0,
                "repaymentScheduleType": "Month",
                "lendingInstitutionId": null,
                "parentLoanId": null,
                "lagPeriod": null,
                "disbursementUpdateStatus": null,
                "disbursementUpdateStage": null,
                "bankInfo": null,
                "disbursementClaimer": null,
                "disbursementTrailCount": null
            }
        ]
    },
    "status": true,
    "message": "Success"
}
PreviousLoan InformationNextRepayment Schedule Calculation

Last updated 3 years ago

Was this helpful?