# Show Consumer Overdraft Limit Change Shows a consumer overdraft limit change. Endpoint: GET /v1/persons/{person_id}/consumer_overdrafts/{overdraft_id}/limit_changes/{limit_change_id} Version: 1.0 ## Path parameters: - `person_id` (string, required) The unique person ID, generated after completing the person onboarding process. - `overdraft_id` (string, required) The unique ID of a consumer overdraft. - `limit_change_id` (string, required) The unique limit chnage ID, generated after creating a limit change. ## Response 200 fields (application/json): - `id` (string, required) The unique ID of a consumer overdraft, generated after an overdraft is offered. Example: "00556cd181f2409aaa6c2a033cce3a8fcovd" - `overdraft_id` (string, required) The unique ID of a overdraft. Example: "b83z264de98741018419b53648e20ca9coap" - `status` (string, required) The status of a limit change. Enum: "requested", "tnc_pending", "tnc_accepted", "conditions_pending", "limit_pending", "attached", "cancelled", "expired" - `created_at` (string, required) The date and time the overdraft was created. Example: "2021-08-03T18:01:48.000Z" - `requested_limit` (object, required) Example: {"value":1000,"unit":"cents","currency":"EUR"} - `requested_limit.value` (integer, required) The amount value Example: 1000 - `requested_limit.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `requested_limit.unit` (string, required) The unit of the given value. Enum: "cents" - `tnc_accepted_at` (string,null) The date and time the terms and conditions were accepted by the customer. Example: "2021-08-03T18:01:48.000Z" - `reason` (string,null) The reason why the limit change was requested. Example: "Customer has a good scoring." - `limit_at_creation_time` (object,null) Example: {"value":1000,"unit":"cents","currency":"EUR"} - `attached_at` (string,null) The date and time the new limit was attached. Example: "2021-08-03T18:01:48.000Z" ## 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"