API Documentation
  • 🏡Home
  • Overview
    • 💡What we do
    • ✨Our Features
  • General Guide
    • 🏷️Introduction
    • 📪Test and Go Live
    • 💁Configuration
      • Custormers
        • Create Customer
        • Fetch Loan Customers
        • Fetch Customers
      • Loan Types
        • Fetch Loan Types
        • Loan Reasons
      • Country
        • Get all countries
        • Get states by country Id
      • Branch
        • Create Branch
        • Branches
      • Sales Person
        • Create a Salesperson
        • Get Sales Persons
      • Team
        • Create a Team
        • Get Teams
      • Employers
      • Industries
      • Commission
  • Products Guide
    • 🏛️Loans
      • New Loan Application
      • Activate/De-Activate Auto approval
      • Loan Information
      • Active Loans
      • Repayment Schedule Calculation
      • Create payment entries
      • Spool Repayments Due
      • Repayment Activation File
      • Repayment Activation Information
      • Disburse
    • 🪝Webhooks
      • Webhooks Verification.
      • Verification Steps
Powered by GitBook
On this page

Was this helpful?

  1. General Guide
  2. Configuration
  3. Loan Types

Loan Reasons

View Loan reason appropriate for loan applications

View Loan reason appropriate for loan applications

GET https://<your_business_alias>.lendastack.io/ias/loan/loanreasons/:searchParameter

This endpoint fetches loan reason on the system.

Query Parameters

Name
Type
Description

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": [
        {
            "loanReasonId": 2,
            "loanReasonCode": "LN002",
            "loanReasonName": "FAMILY NEEDS",
            "loanReasonDescription": "TO CATER FOR HOME NEEDS",
            "status": "Active",
            "createdBy": 1,
            "createdAt": "2021-06-22T14:59:18.7876717"
        }
    ],
    "status": true,
    "message": "Success"
}
{
    "data": [],
    "status": true,
    "message": "Success"
}

PreviousFetch Loan TypesNextCountry

Last updated 2 years ago

Was this helpful?

💁