latestOpenAPI 3.0.12026-08-10131668.6 KB
0da0be803c1c
Credit cards
Create a credit card application for a consumer or freelancer
This endpoint creates a credit card application and assigns it to the person with the person_id specified in the request URL. The application includes all the required information about the customer, such as their self-declared financial information, credit card type and requested limit, which Solaris' credit scorer uses to initiate a series of credit checks.<br> Note: Solaris will tell you which fields are mandatory based on your use case.
post/v1/persons/{person_id}/credit_card_applications
Path parameters
person_idstring required
Request body
Example request
{
"product_type": "CONSUMER_CREDIT_CARD",
"external_customer_id": "CKV1002494",
"repayment_options": {
"upcoming_type": "PARTIAL",
"minimum_amount": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_percentage": 2,
"current_type": "PARTIAL",
"upcoming_billing_cycle": "MONTHLY",
"current_billing_cycle": "MONTHLY",
"grace_period_in_days": 15,
"minimum_amount_lower_threshold": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_amount_upper_threshold": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_percentage_lower_threshold": 3,
"minimum_percentage_upper_threshold": 20
},
"statement_with_details": true,
"scoring_options": {
"customer_desired_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"number_of_dependents": 1,
"marital_status": "MARRIED",
"living_situation": "LIVING_WITH_PARENTS",
"living_situation_expenses": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"net_income": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"credit_repayment_excluding_mortgage": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"other_credit_card_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"employment_since": "2019-08-24",
"annual_turnover": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"monthly_business_costs": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"total_clients_12_months": 10,
"reference_account_created_year": "2019",
"member_since": "2019-08-24"
}
}Response
The credit card application was created successfully.
Example response
{
"customer_id": "0ba2211cab11af6094d60ead81f2bd9dcper",
"account_id": "c2a13abed3b0686ab5343aa748d7f2fecacc",
"account_iban": "DE53110101013323159108",
"reference_account_id": "d1ed02309ca52b5e636e215ff82b2d52sddm",
"status": "PENDING",
"product_type": "CONSUMER_CREDIT_CARD",
"billing_start_date": "2022-07-01",
"billing_end_date": "2022-07-28",
"qes_at": "2022-07-28",
"approved_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"requested_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"current_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"repayment_options": {
"upcoming_type": "PARTIAL",
"minimum_amount": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_percentage": 2,
"current_type": "PARTIAL",
"upcoming_billing_cycle": "MONTHLY",
"current_billing_cycle": "MONTHLY",
"grace_period_in_days": 15,
"minimum_amount_lower_threshold": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_amount_upper_threshold": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"minimum_percentage_lower_threshold": 3,
"minimum_percentage_upper_threshold": 20
},
"statement_with_details": true,
"scoring_options": {
"customer_desired_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"number_of_dependents": 1,
"marital_status": "MARRIED",
"living_situation": "LIVING_WITH_PARENTS",
"living_situation_expenses": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"net_income": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"credit_repayment_excluding_mortgage": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"other_credit_card_limit": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"employment_since": "2019-08-24",
"annual_turnover": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"monthly_business_costs": {
"value": 100,
"unit": "cents",
"currency": "EUR"
},
"total_clients_12_months": 10,
"reference_account_created_year": "2019",
"member_since": "2019-08-24"
},
"repayment_type_switch_available_date": "2022-07-28",
"created_at": "2022-07-28"
}