latestOpenAPI 3.0.02026-08-102737124.3 KB

06b62340347d

Consumer Credit Line

Retrieve a consumer credit line application

Returns the current status and details of an existing consumer credit line application. Alternatively, you can subscribe to the webhook event CREDIT_LINE_APPLICATION to receive status updates on the application.

get/v1/persons/{person_id}/credit_line_applications/{application_id}

Path parameters

person_idstring required

The person ID of the customer applying for the credit line.

application_idstring required

The unique credit line application ID assigned to a specific customer.

Response

Application

status_descriptionstring nullable

Additional details about the credit line application status.

status'initial_scoring_pending' | 'account_snapshot_pending' | 'account_snapshot_verification_pending' | 'identification_pending' | 'offered' | 'esign_pending' | 'esign_complete' | 'esign_failed' | 'credit_line_creation_pending' | 'credit_line_created' | 'expired' | 'deleted' | 'rejected' | 'scoring_pending' required

The status of a consumer credit line application.

signing_idstring nullable

The ID of the signing resource, created after the customer's identification and e-signing process has been triggered.

recipient_ibanstring nullable

The IBAN of the customer's account to use for the account snapshot.

reasonstring nullable

The reason(s) for rejecting a credit line application.

person_idstring required

The person ID of the customer applying for the credit line.

partner_reference_numberstring nullable

The partner reference number.

offered_interest_ratenumber nullable

The offered interest rate to apply to the credit line.

marriage_status'MARRIED' | 'UNMARRIED' | 'DIVORCED' | 'UNKNOWN' nullable

The customer's marital status.

identification_idstring nullable

The unique ID of a customer's identification resource.

idstring required

The unique ID of a consumer credit line application.

employment_status'EMPLOYED' | 'UNEMPLOYED' | 'PUBLIC_SECTOR_EMPLOYEE' | 'PROFESSIONAL_SOLDIER' | 'FREELANCER' | 'HOUSEWORK' | 'APPRENTICE' | 'MANAGEMENT' | 'RETIRED' | 'STUDENT' | 'SELF_EMPLOYED' | 'MILITARY_OR_COMMUNITY_SERVICE' nullable

The customer's employment status.

decision'REJECTED' | 'OFFERED' nullable required

Solaris' decision on the credit line application.

credit_line_idstring nullable

The unique ID of a credit line, generated after a credit line is created.

Example response

{
  "status": "account_snapshot_pending",
  "signing_id": "7c63600ddddec4f2668893af39c1b814csig",
  "recipient_iban": "DE92370601930002130041",
  "person_id": "dc1a6812a14f6cc338cd084208535bcdcper",
  "partner_reference_number": "ABHP244919",
  "offered_limit": {
    "currency": "EUR",
    "unit": "cents",
    "value": 1000
  },
  "offered_interest_rate": 2.5,
  "net_disposable_income": {
    "currency": "EUR",
    "unit": "cents",
    "value": 1000
  },
  "marriage_status": "UNMARRIED",
  "identification_id": "9e2e85c62230a652325964282c84559fcidt",
  "id": "35eee37033c5436f9cbff6df1f88e097ccla",
  "employment_status": "EMPLOYED",
  "decision": "OFFERED",
  "credit_line_id": "1908331fb8384edcbfe63067366c4b6accln"
}