# Link a credit record to a consumer credit line application Attaches a customer's credit record to their credit line application. A credit record is required for the credit scoring process. Endpoint: PUT /v1/persons/{person_id}/credit_line_applications/{application_id}/credit_record 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. ## Request fields (application/json): - `credit_record_id` (string, required) The unique ID of a customer's credit record. Example: "fbb7d15fa4c54ba0b077592665ef04a4ccrd" ## Response 403 fields (application/json): - `code` (string) Example: "unauthorized_action" - `detail` (string) Example: "Unauthorized action is not allowed." - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `title` (string) Example: "Unauthorized Action" ## 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" ## Response 409 fields (application/json): - `title` (string) Example: "Record Not Unique" - `status` (string) Example: "409" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Could not save `terms_and_conditions_event`." - `code` (string) Example: "record_not_unique"