This commit is contained in:
a2a-platform
2026-06-27 01:02:54 +00:00
commit dcf20c131f
37 changed files with 83787 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
---
name: cash-drawers-routes
description: Handle 3 OpenAPI operation(s) under /v2/cash-drawers/shifts for the cash drawers route group.
---
# cash drawers API Routes
Handle 3 OpenAPI operation(s) under /v2/cash-drawers/shifts for the cash drawers route group.
Use the generated operation tools to make real API calls. Do not invent API responses.
If a tool reports missing setup, return the exact setup field name to the caller.
For write, update, or delete operations, state the intended action before calling the tool.
## Operations
### list_cash_drawer_shifts
- Operation ID: `list_cash_drawer_shifts`
- Route: `GET /v2/cash-drawers/shifts`
- Mode: READ
- Summary: ListCashDrawerShifts
- Parameters:
- `location_id` in `query` required
- `sort_order` in `query`
- `begin_time` in `query`
- `end_time` in `query`
- `limit` in `query`
- `cursor` in `query`
### retrieve_cash_drawer_shift
- Operation ID: `retrieve_cash_drawer_shift`
- Route: `GET /v2/cash-drawers/shifts/{shift_id}`
- Mode: READ
- Summary: RetrieveCashDrawerShift
- Parameters:
- `location_id` in `query` required
- `shift_id` in `path` required
### list_cash_drawer_shift_events
- Operation ID: `list_cash_drawer_shift_events`
- Route: `GET /v2/cash-drawers/shifts/{shift_id}/events`
- Mode: READ
- Summary: ListCashDrawerShiftEvents
- Parameters:
- `location_id` in `query` required
- `shift_id` in `path` required
- `limit` in `query`
- `cursor` in `query`