# 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 to receive status updates on the application. Endpoint: GET /v1/persons/{person_id}/credit_line_applications/{application_id} Version: 1.0 ## Path parameters: - `person_id` (string, required) The person ID of the customer applying for the credit line. - `application_id` (string, required) The unique credit line application ID assigned to a specific customer. ## Response 200 fields (application/json): - `id` (string, required) The unique ID of a consumer credit line application. Example: "35eee37033c5436f9cbff6df1f88e097ccla" - `decision` (string,null, required) Solaris' decision on the credit line application. Enum: "REJECTED", "OFFERED" - `status` (string, required) The status of a consumer credit line application. Enum: "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" - `person_id` (string, required) The person ID of the customer applying for the credit line. Example: "dc1a6812a14f6cc338cd084208535bcdcper" - `status_description` (string,null) Additional details about the credit line application status. - `signing_id` (string,null) The ID of the signing resource, created after the customer's identification and e-signing process has been triggered. Example: "7c63600ddddec4f2668893af39c1b814csig" - `scoring_workflow` (object,null) An object containing certain actions required for the scoring process. - `scoring_workflow.required_actions` (array) Actions you must complete for the scoring process. - `scoring_workflow.required_actions.required` (string,null) - `recipient_iban` (string,null) The IBAN of the customer's account to use for the account snapshot. Example: "DE92370601930002130041" - `reason` (string,null) The reason(s) for rejecting a credit line application. - `partner_reference_number` (string,null) The partner reference number. Example: "ABHP244919" - `offered_limit` (object,null) The offered credit line limit. Example: {"currency":"EUR","unit":"cents","value":1000} - `offered_limit.value` (integer, required) The amount value Example: 1000 - `offered_limit.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `offered_limit.unit` (string, required) The unit of the given value. Enum: "cents" - `offered_interest_rate` (number,null) The offered interest rate to apply to the credit line. Example: 2.5 - `net_disposable_income` (object,null) The net disposable income available to the customer after deducting all taxes. Example: {"currency":"EUR","unit":"cents","value":1000} - `marriage_status` (string,null) The customer's marital status. Enum: "MARRIED", "UNMARRIED", "DIVORCED", "UNKNOWN" - `identification_id` (string,null) The unique ID of a customer's identification resource. Example: "9e2e85c62230a652325964282c84559fcidt" - `employment_status` (string,null) The customer's employment status. Enum: "EMPLOYED", "UNEMPLOYED", "PUBLIC_SECTOR_EMPLOYEE", "PROFESSIONAL_SOLDIER", "FREELANCER", "HOUSEWORK", "APPRENTICE", "MANAGEMENT", "RETIRED", "STUDENT", "SELF_EMPLOYED", "MILITARY_OR_COMMUNITY_SERVICE" - `credit_line_id` (string,null) The unique ID of a credit line, generated after a credit line is created. Example: "1908331fb8384edcbfe63067366c4b6accln" ## Response 404 fields (application/json): - `code` (string) Example: "model_not_found" - `detail` (string) Example: "Couldn't find 'Account' for id 'DE24112233445566'." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "404" - `title` (string) Example: "Model Not Found"