List all repayments on a loan
List all repayments on a loan
GET https://sandbox-api.stilt.com/v1/users/{user_id}/loans/{loan_id}/payments
Returns an array of objects, with each object representing the details of a repayment
Path Parameters
Name
Type
Description
user_id*
string
The uuid of the user
loan_id*
string
The uuid of the loan
[
{
"uuid": "06599e39-fdbd-49d7-bd4c-3f04ae8cffbc",
"product": "LOAN",
"payment_type": "SINGLE_PAYMENT",
"effective_date": "2022-07-27",
"amount": 250.0,
"principal": null,
"interest": null,
"fees": null,
"suspense": null,
"ending_balance": null,
"should_commit_to_nls": true,
"borrower_bank_account_uuid": "2ce352c5-64aa-4d1b-be16-b34496228072",
"mobilepayment_batch_id": null,
"mobilepayment_id": null,
"completion_date": null,
"error_description": null,
"initiation_date": null,
"status": "SCHEDULED"
},
{...},
{...}
]Last updated