# Get Business Overdraft Returns all the details of an existing business overdraft, assigned to the with the given . Endpoint: GET /v1/businesses/{business_id}/overdrafts/{overdraft_id} Version: 1.0 ## Path parameters: - `business_id` (string, required) The unique business ID, generated after completing the business onboarding process. - `overdraft_id` (string, required) The unique ID of a business overdraft, generated after an overdraft is offered. ## Response 200 fields (application/json): - `id` (string, required) The unique ID of a business overdraft, generated after an overdraft is offered. Example: "00556cd181f2409aaa6c2a033cce3a8fbovd" - `business_id` (string, required) The unique ID of a business, generated after completing the business onboarding process. Example: "880bbac68a34add190786b9c74f4c82fcbiz" - `application_id` (string, required) The unique ID of a business overdraft application. Example: "fdsdefghijklmnopqrstuvwxyz012346boap" - `account_iban` (string, required) The IBAN of a business account. Example: "DE13110101014386274299" - `status` (string, required) The status of a business overdraft. Enum: "created", "conditions_pending", "limit_pending", "attached", "terminated" - `interest_accrual_rate` (number, required) The daily rate at which interest is accrued on the used amount of an overdraft. Example: 3 - `overdraft_rate` (number, required) The interest rate applicable to the overdraft. Example: 8 - `created_at` (string, required) The date and time the overdraft was created. Example: "2021-08-03T18:01:48.000Z" - `interest_accrued` (any, required) The daily interest accrued by a business account. - `limit` (object,null) Example: {"value":1000,"unit":"cents","currency":"EUR"} - `limit.value` (integer, required) The amount value Example: 1000 - `limit.currency` (string, required) The currency of the given value. Only EURO is currently supported. Example: "EUR" - `limit.unit` (string, required) The unit of the given value. Enum: "cents" ## 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"