v1

latestOpenAPI 3.0.32026-07-2621102.1 MB
Loan

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

status_codeinteger nullable required

The response status code. May return a string for some statuses.

statusstring nullable required

The condition of a process or response

processing_timenumber float nullable required

The time elapsed in processing the transaction

system_timestampstring date-time nullable required

A system generated timestamp

rtokenstring nullable required

A Galileo-generated ID used for tracking

errorsstring[]

A list of errors generated while the request was processed

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