Retrieve a LOC

Retrieve a LOC

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

Returns the LOC object information for a single LOC

Path Parameters

NameTypeDescription

user_id*

string

The uuid of the user

loc_id*

string

The uuid of the LOC

{
    "user_uuid": "17684db4-d9c9-4b43-861d-39a42e76ad81",
    "uuid": "0ef934a5-492a-4fea-baf4-6ff43f9b1fbb",
    "product": "LOC",
    "origin_loan_uuid": null,
    "external_id": null,
    "state": "CA",
    "amount": 2500.0,
    "interest_rate": 7.0,
    "apr": 7.0,
    "term": 60,
    "term_frequency": "MONTHLY",
    "interest_only_period": null,
    "opening_date": "2022-07-15",
    "repayments_start_date": null,
    "repayments_end_date": null,
    "maturity_date": null,
    "autopay_enabled": false,
    "origination_fee": 0.0,
    "finance_charge": null,
    "total_repayment_amount": null,
    "interest_amount": null,
    "risk_grade": null,
    "status": "ACTIVE",
    "delinquent": false,
    "installments": []
}

Be sure to omit `Content-Type': 'application/json' from the header of this request to avoid a 500 error

Last updated