Retrieve details of a LOC repayment

Retrieve a repayment's details

GET https://sandbox-api.stilt.com/v1/users/{user_id}/loc/{loc_id}/payments/{payment_id}

Returns an object representing the details of a repayment

Path Parameters

NameTypeDescription

user_id*

string

The uuid of the user

loc_id*

string

The uuid of the LOC

payment_id*

string

The uuid of the payment

{
    "uuid": "a4d3dee4-fff1-4c9a-bba8-fa118648274a",
    "product": "LOC",
    "effective_date": "2021-11-23 00:00:00",
    "amount": 234.0,
    "principal": null,
    "interest": null,
    "fees": null,
    "suspense": null,
    "ending_balance": null,
    "origination_fee": null,
    "skip_nls": null,
    "returned_at": null,
    "payment_type": "SINGLE_PAYMENT",
    "borrower_bank_account_uuid": "b841fdca-81d1-48a3-be6c-9b999fa25b29",
    "ach_batch_id": null,
    "ach_id": null,
    "completion_date": 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