> ## 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.

# Open Cash Drawer

> Open the cash drawer remotely

## Overview

The **Open Cash Drawer API** is used to remotely trigger the opening of a
connected cash drawer.

This endpoint is typically used in POS systems when a manual drawer opening
is required (for example, cash withdrawal or inspection).

***

## Authorization

🔓 **Authorization is NOT required** for this endpoint.

***

## Notes

* 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

````