# Retrieve a single credit line Returns the details and status of a credit line associated with a specific customer. Endpoint: GET /v1/persons/{person_id}/credit_lines/{credit_line_id} Version: 1.0 ## Path parameters: - `person_id` (string, required) The person ID of the customer for whom the credit line is issued. - `credit_line_id` (string, required) The unique credit line ID, generated after a credit line is created. ## Response 200 fields (application/json): - `id` (string, required) The unique ID of a credit line, generated after a credit line is created. Example: "1908331fb8384edcbfe63067366c4b6accln" - `person_id` (string, required) The person ID of the customer applying for the credit line. Example: "dc1a6812a14f6cc338cd084208535bcdcper" - `recipient_iban` (string, required) The IBAN of the customer's account to use for the account snapshot. Example: "DE92370601930002130041" - `disposable_income` (object,null, required) The total amount of the customer's disposable income. Example: {"currency":"EUR","unit":"cents","value":1000} - `disposable_income.value` (integer, required) The amount value Example: 1000 - `disposable_income.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `disposable_income.unit` (string, required) The unit of the given value. Enum: "cents" - `latest_disposable_income` (object,null, required) The amount of the customer's latest disposable income. Example: {"currency":"EUR","unit":"cents","value":1000} - `created_at` (string, required) The timestamp from when the credit line was created. Example: "2022-02-07T11:57:42" - `interest_rate` (number, required) The interest rate to apply to the credit line. This field is used if there's a specific interest rate to be applied for a partner. Example: 0.11 - `annual_percentage_rate` (number, required) The annual interest rate applied to the credit line. Example: 0.11 - `limit` (object, required) The limit of the credit line. Example: {"currency":"EUR","unit":"cents","value":1000} - `status` (string, required) The status of the credit line. Enum: "authorization_pending", "account_creation_pending", "mandate_creation_pending", "open", "closed" - `locking_status` (string, required) The locking status, which indicates whether it's possible to create a loan against the credit line or it's blocked. Enum: "BLOCK", "NO_BLOCK" - `utilized_amount` (object, required) The utilized amount of the credit line limit. Example: {"currency":"EUR","unit":"cents","value":1000} - `active_loans` (array, required) An array containing the details of all active loans related to the customer's credit line. - `active_loans.id` (string) The unique ID of a loan. Example: "e0167a47f385443a835050d1d9274b45cloa" - `application_id` (string, required) The unique ID of a consumer credit line application. Example: "35eee37033c5436f9cbff6df1f88e097ccla" - `termination_type` (string,null) The type of the credit line termination. Enum: "ORDINARY_BY_BANK", "ORDINARY_BY_CUSTOMER" - `termination_requested_at` (string,null) The date when the credit line termination was requested. Example: "2022-02-07" - `termination_date` (string,null) The date when the credit line termination was effective. Example: "2022-02-08" - `renewal` (object,null) - `renewal.status_description` (string) Additional information about the status. - `renewal.status` (string) Status of the credit line renewal. Enum: "planned", "scoring_pending", "scoring_successful", "customer_notified", "cancelled", "renewed" - `renewal.rejection_date` (string,null) The date the renewal was rejected. Example: "2022-10-31" - `renewal.notification_sent_date` (string,null) The date the renewal notification was sent to the customer. Example: "2021-01-20" - `renewal.id` (string) ID of the credit line renewal. Example: "0696599d-7f0a-434b-b480-ebe5a1e20cc4" - `renewal.effective_until_date` (string) The date until which the renewal will be effective. Example: "2022-04-10" - `renewal.effective_from_date` (string) The date from which the renewal will be effective. Example: "2022-04-10" - `renewal.credit_line_id` (string) The ID of the credit line. Example: "1908331fb8384edcbfe63067366c4b6accln" - `product_type` (string) The type of the credit line product. Enum: "freelancer", "consumer" - `granted_at` (string) The timestamp from when the credit line was granted to a customer. Example: "2022-02-07T11:57:42Z" - `account_id` (string,null) The unique ID of the customer's Solaris account. Example: "adc123a45d6d7cf8fbfeed537ba919d5cacc" - `account_iban` (string,null) The IBAN of the customer's account. Example: "DE25110101002910133758" ## 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"