Retrieve details of a LOC repayment
Retrieve a repayment's details
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loc/{loc_id}/payments/{payment_id}
Returns an object representing the details of a repayment
Path Parameters
Name
Type
Description
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": "2024-01-23 00:00:00",
"amount": 2340.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",
"mobilepayment_batch_id": null,
"mobilepayment_id": null,
"completion_date": null,
"initiation_date": null,
"status": "SCHEDULED"
}Last updated