v1
latestOpenAPI 3.0.32026-07-2621102.1 MBLoan
Get Loan Payment Schedule
Use the Get Loan Payment Schedule endpoint to get a history of payments made on the loan along with a real-time view of future payments owed. This endpoint reflects changes to the installment amount that can occur for various reasons, like a merchant refund. Get Loan Payment Schedule returns the updated amount owed on future installments, but the due dates remain the same as provided in the amortization schedule.
For optional parameters, do not pass an empty string or null value.
post/1.0/getLoanPaymentSchedule
Response
Success
Example response
{
"response_data": {
"late_fee": 2000,
"payments_schedule": [
{
"scheduled_installment_number": 2,
"scheduled_amount_due": 857.47,
"scheduled_principal_amount": 2,
"scheduled_interest_amount": 836.67,
"scheduled_late_fee_due": 2000
}
],
"payments_history": [
{
"hist_payment_amount": 2000,
"hist_payment_principal": 2000,
"hist_payment_interest": 2000,
"hist_payment_fees": 2000,
"scheduled_balance_amount": 2000
}
]
}
}