Loan Repayment Schedule
use this endpoint to repayment schedule for a borrowers loan.
Get Cakes
Query Parameters
Name
Type
Description
Headers
Name
Type
Description
{
"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?