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?

Loan Types

View all loan type applicable on the system

Loan Types

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

This endpoint fetches loan types on the system.

Path Parameters

Name
Type
Description

branchId

string

The branch Id where the loan type was created

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": [ 
        {
            "loanTypeId": 276,
            "loanName": "Personal/Quarterly (Top-up) - 4",
            "maxAmount": 100000000,
            "minAmount": 100,
            "loanTypeCode": "Personal/Quarterly (Top-up) - 4",
            "interestRate": 4,
            "dsrRate": 80,
            "repaymentType": 1,
            "repaymentPeriod": null,
            "repaymentFrequency": null,
            "loanTypeTenor": 30,
            "minimumCreditScore": 0,
            "maximumCreditScore": 0
        },
        {
            "loanTypeId": 280,
            "loanName": "Personal - 3.3",
            "maxAmount": 100000000,
            "minAmount": 100,
            "loanTypeCode": "Personal - 3.3",
            "interestRate": 3.3,
            "dsrRate": 80,
            "repaymentType": 1,
            "repaymentPeriod": null,
            "repaymentFrequency": null,
            "loanTypeTenor": 30,
            "minimumCreditScore": 0,
            "maximumCreditScore": 0
        }      
    ],
    "status": true,
    "message": "Success"
}
{    "message": "Ain't no cake like that."}

PreviousSearch CustomerNextBranches

Last updated 3 years ago

Was this helpful?