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
Get Cakes
GET
{{BASE_URL}}/mfi/v1/borrowers/repayment-shedules
Get user loan repayment schedule
Query Parameters
Name
Type
Description
channel*
string
Client Name given by Pezesha
merchant_id*
string
Merchant id for whom to see the loan repayment schedule
Headers
Name
Type
Description
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
Was this helpful?