Retrieve details of a loan repayment
Retrieve a repayment's details
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loans/{loan_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
loan_id*
string
The uuid of the loan
payment_id*
string
The uuid of the payment
{
"uuid": "06599e39-fdbd-49d7-bd4c-3f04ae8cffbc",
"product": "LOAN",
"payment_type": "SINGLE_PAYMENT",
"effective_date": "2024-02-27",
"amount": 25000.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