# Retrieve a credit record Returns the information about a customer's existing credit record, including the status and validity of the credit record. Add the customer's and the in the request URL. If the of a credit record is , you must create a new credit record for the customer. Endpoint: GET /v1/persons/{person_id}/credit_records/{credit_record_id} Version: 1.0 ## Path parameters: - `person_id` (string, required) The of the customer. - `credit_record_id` (string, required) The unique ID of the customer's credit record. ## Response 200 fields (application/json): - `id` (string, required) The ID of the credit record resource. Example: "fbb7d15fa4c54ba0b077592665ef04a4ccrd" - `person_id` (string, required) The person ID of the customer. Example: "dc1a6812a14f6cc338cd084208535bcdcper" - `status` (string, required) The status of the credit record. If the status is , you must create a new credit record for the customer. Enum: "available", "expired" - `created_at` (string, required) UTC timestamp from when the credit record was created. Example: "2020-20-03T18:01:48.000Z" ## Response 404 fields (application/json): - `title` (string) Example: "Model Not Found" - `status` (string) Example: "404" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Couldn't find 'credit record' for id 'fbb7d15fa4c54ba0b077592665ef04a4ccrd'." - `code` (string) Example: "model_not_found"