# Retrieve a dunning case Returns the dunning case with the ID specified in the request URL. Endpoint: GET /v1/dunning_cases/{dunning_case_id} Version: 1.0 ## Path parameters: - `dunning_case_id` (string, required) The ID of the dunning case to be retrieved. ## Response 200 fields (application/json): - `id` (string, required) The ID of the dunning case. Example: "41c8d48c-4b73-4f5b-a7d0-5778e041b7c2" - `status` (string, required) The status of the dunning case. Enum: "new", "dunning", "pre_termination", "terminated", "closed", "pre_collection", "closed_matured" - `person_id` (string, required) The person ID of the customer associated with the loan and dunning case. Example: "547a870b2c8461a3104559369d09265dcper" - `loan_id` (string, required) The ID of the loan. Example: "c13447d659db4cdcb450b977f8f25c57cloa" - `billing_account_id` (string, required) The ID of the customer's billing account from which all the loan payments will be debited. Example: "1d0e52af0a62b4b44d8c54a87a7fc6a7cacc" - `loan_account_id` (string, required) The account ID to which the loan is attached. Example: "adc123a45d6d7cf8fbfeed537ba919d5cacc" - `credit_reference_id` (string, required) The ID of the related credit line. - `strategy` (string, required) The dunning handling strategy to be applied to the case. Enum: "consumer", "freelancer" - `total_overdue_amount` (any, required) An object containing the total overdue amount, including the overdue monthly installment and any payable fees and/or interest. - `overdue_installment_amount` (any, required) An object containing the overdue installment amount. - `fees` (any, required) An object containing the fees related to the dunning case. - `deadline` (string, required) The date when the dunning case must be resolved. Example: "2021-09-01" - `last_sddr_date` (string, required) The date of the last SEPA Direct Debit R-transaction. Example: "2021-09-01" ## Response 403 fields (application/json): - `title` (string) Example: "Unauthorized Action" - `status` (string) Example: "403" - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `detail` (string) Example: "Unauthorized action is not allowed." - `code` (string) Example: "unauthorized_action" ## 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 'Account' for id 'DE24112233445566'." - `code` (string) Example: "model_not_found"