List a user's LOC applications

Retrieve all LOC applications for a user

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

Returns an array of objects, with each object representing an LOC application

Path Parameters

NameTypeDescription

user_id*

string

The uuid of the user

{
    "pagination": {
        "offset": 0,
        "limit": 25,
        "total": 4
    },
    "data": [
        {
            "uuid": "05e7e541-95b0-4294-8374-9f341f1ae857",
            "product": "BUILD_CREDIT",
            "amount": 2500.0,
            "term": null,
            "purpose": null,
            "details": null,
            "credit_score_consent": false,
            "created_at": "2022-05-19 11:28:45 PDT",
            "credit_report_id": 570,
            "offers": [
                {
                    "uuid": "b94bc34a-add6-4756-839e-322e357ef307",
                    "product": "BUILD_CREDIT",
                    "apr": 0.0,
                    "amount": 5000.0,
                    "term": null,
                    "term_frequency": "MONTHLY",
                    "interest_rate": 0.0,
                    "origination_fee": 0.0,
                    "interest_only_period": null,
                    "interest_only_installment": null,
                    "interest_amount": null,
                    "installment": null,
                    "start_date": "2022-05-19",
                    "explanation": null,
                    "maturity_date": null
                }
            ],
            "status": {
                "decision": "APPROVED",
                "details": null
            }
        },
        {...},
        {...}
    ]
}

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

Last updated