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

[
    {
        "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",
        "ach_batch_id": null,
        "ach_id": null,
        "completion_date": null,
        "error_description": null,
        "initiation_date": null,
        "status": "SCHEDULED"
    },
    {...},
    {...}
]

Be sure to omit `Content-Type': 'application/json' from the header of this request to avoid a 500 error

Last updated