> ## Documentation Index
> Fetch the complete documentation index at: https://dev.fbox.uz/llms.txt
> Use this file to discover all available pages before exploring further.

# Cash drawer ochish

> Cash drawerni masofadan ochish

## Umumiy ko'rinish

**Open Cash Drawer API** ulangan cash drawerni masofadan ochish uchun ishlatiladi.

Bu endpoint odatda POS tizimlarida cash drawerni qo'lda ochish kerak bo'lganda ishlatiladi
is required (for example, cash withdrawal or inspection).

***

## Avtorizatsiya

🔓 **Bu endpoint uchun avtorizatsiya talab qilinmaydi**.

***

## Eslatmalar

* The endpoint performs a hardware-related action
* A successful request does not return any payload data
* Errors are returned in a unified error object


## OpenAPI

````yaml GET /print/open_cash_drawer
openapi: 3.0.3
info:
  title: Open Cash Drawer API
  version: 1.0.0
servers:
  - url: https://fbox.ngrok.io
security: []
paths:
  /print/open_cash_drawer:
    get:
      summary: Open cash drawer
      description: Triggers the opening of a connected cash drawer
      responses:
        '200':
          description: Cash drawer opened successfully
          content:
            application/json:
              example:
                data: null
                error: null
                is_success: true
        '400':
          description: Failed to open cash drawer
          content:
            application/json:
              example:
                data: null
                error:
                  code: 400
                  message: Unable to open cash drawer
                  data: null
                is_success: false

````