Retrieve a statement
Retrieve a statement
GET https://sandbox-api.nanol.com/v1/users/{user_id}/loc/{loc_id}/statements
Returns a statement object including the LOC's balance, due dates and statement documents. This endpoint should not return an error as long as the LOC exists.
Path Parameters
Name
Type
Description
user_id*
string
The uuid of the user
loc_id*
string
The uuid of the LOC
{
"next_billing_date": "2024-04-07",
"principal_balance": 0.0,
"interest_balance": 0.0,
"payoff_balance": 0.0,
"days_past_due": 0,
"past_due_balance": 0.0,
"payment_amount_due": 0,
"payment_due_date": null,
"suspense_balance": 0.0,
"statements": [
{
"billing_date": "2024-01-07",
"url": "https://storage.googleapis.com/nanol-sandbox-loan-statements/loan_statement_33b41175-ea54-4a5b-8616-abc482fcce9f_2022-06-07.pdf"
},
{
"billing_date": "2022-08-07",
"url": "https://storage.googleapis.com/nanol-sandbox-loan-statements/loan_statement_33b41175-ea54-4a5b-8616-abc482fcce9f_2022-08-07.pdf"
}
],
"credit_limit": 25000.0,
"available_credit": 25000.0,
"current_credit": 25000.0
}Last updated