Loan Repayment Schedule

use this endpoint to repayment schedule for a borrowers loan.

The repayment schedule can be Daily, Weekly or Monthly depending on the partners agreement with Pezesha. A repayment schedule can have the following statuses

  • Active on Schedule - the schedule is active and payment is on schedule

  • Paid - the schedule has already been paid

  • Overdue - the schedule is overdue i.e payment is late

in the loan schedule response, 'month' is used as a placeholder i.e it can represent day, week or month depending on the the partners loan schedule agreement with pezesha

Get Cakes

GET {{BASE_URL}}/mfi/v1/borrowers/repayment-shedules

Get user loan repayment schedule

Query Parameters

NameTypeDescription

channel*

string

Client Name given by Pezesha

merchant_id*

string

Merchant id for whom to see the loan repayment schedule

Headers

NameTypeDescription

Authentication*

string

Authentication token generated from Authentication endpoint

{
    "status": 200,
    "response_code": 0,
    "error": false,
    "message": "Loans Repayment Schedule",
    "data": [
        {
            "loan_id": 10101,
            "repayment_date": "2020-07-03",
            "month": 1,
            "principal_amount": 500,
            "interest_amount": 0,
            "penalty_amount": 0,
            "penalty_paid": 0,
            "total_due": 500,
            "total_outstanding": 1000,
            "balance": 500,
            "status": "Active on Schedule"
        },
        {
            "loan_id": 10101,
            "repayment_date": "2020-07-03",
            "month": 2,
            "principal_amount": 500,
            "interest_amount": 0,
            "penalty_amount": 0,
            "penalty_paid": 0,
            "total_due": 500,
            "total_outstanding": 500,
            "balance": 500,
            "status": "Active on Schedule"
        },
        {
            "loan_id": 10101,
            "repayment_date": "2020-07-04",
            "month": 3,
            "principal_amount": 500,
            "interest_amount": 0,
            "penalty_amount": 0,
            "penalty_paid": 0,
            "total_due": 500,
            "total_outstanding": 0,
            "balance": 500,
            "status": "Active on Schedule"
        }
        
    ]
}

Last updated