latestOpenAPI 3.0.02026-08-101924100.1 KB
7fb31ddc103c
Consumer fronting
Create consumer fronting loan application
Creates a consumer fronting loan application and assigns it to the person with the person_id specified in the request URL. The payload of this endpoint 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/consumers/persons/{person_id}/fronting_loan_applications
Path parameters
person_idstring required
The person ID of the customer applying for a fronting loan.
Request body
Example request
{
"credit_record_id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
"effective_interest_rate": 0.04,
"employment_since": "2019-08-24",
"existing_credit_repayment_excluding_mortgage": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"living_situation": "LIVING_IN_RENTED_HOUSE",
"living_situation_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"loan_purpose": "Buying a car",
"net_income_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"number_of_kids": 1,
"payout_date": "2021-08-24",
"private_insurance_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"recipient_iban": "DE92370601930002130041",
"recipient_name": "Max Mustermann",
"repayment_day_of_month": 1,
"requested_interest_rate": 0.02,
"requested_loan_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"requested_loan_term": 24,
"total_interest_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"total_principle_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"total_repaid_loan_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"transaction_end_to_end_id": "123322332"
}Response
Application
Example response
{
"account_snapshot_id": "2a9fbb2fc5be45f7b8ca782c45715576snap",
"credit_record_id": "fbb7d15fa4c54ba0b077592665ef04a4ccrd",
"effective_interest_rate": 0.04,
"id": "504f3c3659e14079a6941fe5b7a75eaacfla",
"identification_origination_id": "ccf79efa8b5c4a5594d43b73e58acfb3io",
"loan_purpose": "Buying a car",
"net_income_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"partner_snapshot_allowed": true,
"person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
"recipient_iban": "DE92370601930002130041",
"recipient_name": "Max Mustermann",
"requested_interest_rate": 0.02,
"requested_loan_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"requested_loan_term": 24,
"status": "identification_pending",
"total_interest_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"total_principle_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"total_repaid_loan_amount": {
"currency": "EUR",
"unit": "cents",
"value": 1000
},
"transaction_end_to_end_id": "123322332"
}