latestOpenAPI 3.0.02026-08-102034118.0 KB
8f580eff2157
Consumer Loan
Create consumer loan application
Creates a consumer loan application and assigns it to the person with the person_id specified in the request URL. The payload of the request includes all the required financial information and account data about the customer, which the credit scorer uses to initiate a series of credit checks to determine the customer's credit risk and eligibility.
post/v1/persons/{person_id}/consumer_loan_applications
Path parameters
person_idstring required
The person_id of the customer applying for the loan.
Request body
Example request
{
"private_insurance_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"recipient_iban": "DE92370601930002130041",
"existing_credit_repayment_excluding_mortgage": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"mortgage": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"requested_interest_rate": 0.02,
"credit_record_id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
"loan_purpose": "Buying a car.",
"living_situation": "LIVING_IN_RENTED_HOUSE",
"repayment_day_of_month": 1,
"employment_since": "2019-08-24",
"cash_price": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"requested_loan_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"net_income_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"additional_costs": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"rent": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"living_situation_amount": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
},
"requested_emi": {
"value": 1000,
"unit": "cents",
"currency": "EUR"
}
}Response
Application
Example response
{
"offer": {
"type": "original",
"subsidized": false,
"monthly_installment": {
"value": 10000000,
"unit": "cents",
"currency": "EUR"
},
"loan_term": 36,
"loan_amount": {
"value": 10000000,
"unit": "cents",
"currency": "EUR"
},
"interest_rate": 0.12,
"id": "105a0fa505f44afea4b433d170b83d87cofr",
"effective_interest_rate": 0.13,
"approximate_total_loan_expenses": {
"value": 10000000,
"unit": "cents",
"currency": "EUR"
},
"annual_percentage_rate": 0.13
},
"loan_decision": "OFFERED",
"id": "9b3147c5498b405d9402630bc308ad0ecofr",
"customer_category": "GREEN"
}