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. Products Guide
  2. Loans

Loan Information

Loan details

GET https://<your_business_alias>.lendastack.io/loan/:loanId

This endpoint fetches all information about the loan.

Query Parameters

Name
Type
Description

loanId*

Int

Id of the loan

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": {
        "hasRunningLoan": false,
        "hasActiveLoanApplication": true,
        "loanStage": "Application Pool",
        "loanInformation": {
            "loanId": 1208,
            "applicationCode": "AP0001208",
            "loanAmount": 200000.00,
            "loanTenor": 4,
            "loanType": "Personal - 4.5",
            "loanReason": "",
            "loanBatchCode": "",
            "salesPerson": "EkeneTestApi Abiolasoft",
            "branch": "Head Quarter",
            "personId": 1071,
            "personFirstname": "Segun",
            "personLastname": "Ola",
            "createdAt": "2023-03-25T20:17:10.3029398",
            "employerName": "Emp Name two",
            "amountRepayed": 0.0,
            "totalAmountToBeRepayed": 0.00,
            "amountOutstanding": 0.00,
            "loanStage": "Application Pool",
            "amountDisbursed": 200000.00,
            "status": "Pool",
            "repaymentType": "Month",
            "periodicRepaymentAmount": 59000.00,
            "repaymentSchedule": [],
            "payments": []
        }
    },
    "status": true,
    "message": "Success"
}
PreviousActivate/De-Activate Auto approvalNextActive Loans

Last updated 1 year ago

Was this helpful?

🏛️