List all repayments on a LOC
List all repayments on a LOC
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loc/{loc_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
loc_id*
string
The uuid of the LOC
[
{
"uuid": "f73a53ec-b128-4dbc-b47c-95351432ed40",
"product": "BUILD_CREDIT",
"payment_type": "RETURNED",
"effective_date": "2024-01-22",
"amount": 2500.0,
"principal": null,
"interest": null,
"fees": null,
"suspense": null,
"ending_balance": null,
"should_commit_to_nls": true,
"borrower_bank_account_uuid": "726743ce-e74f-4cd4-ab82-e96769114e7e",
"mobilepayment_batch_id": null,
"mobilepayment_id": null,
"completion_date": null,
"error_description": null,
"initiation_date": null,
"status": "FAILED_AFTER_SUCCESS"
},
{...},
{...}
]Last updated