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"
}

Last updated

Was this helpful?