Comment on page
🖨
Fiscals
This page provides a description of the available API routes for managing fiscal devices.
Fiscal device refers to receipt printer that prints cash register receipts (part of ticket closing procedure).
These API methods allow for the management of fiscal resources, including creation, reading, updating, and deletion.
get
http://{server-address}/
fiscals
Get fiscals
get
http://{server-address}
/fiscals/{name}
Get fiscal by name
post
http://{server-address}
/fiscals
Create fiscal
put
http://{server-address}
/fiscals/{name}
Create or update fiscal
delete
http://{server-address}
/fiscals/{name}
Delete fiscal by name
These API methods trigger specific actions on fiscal devices. However, it's important to note that depending on the type of fiscal device, some methods may not be supported. Additionally, attempting an action on a fiscal device that is marked as inactive will also result in failure. In both of these cases, making API calls will result in an HTTP status code of 403.
post
http://{server-address}
/fiscals/{name}/open_drawer
Open cash drawer
post
http://{server-address}
/fiscals/{name}/cash_transfer
Perform cash transfer
post
http://{server-address}
/fiscals/{name}/print_record_copy
Print ticket copy
post
http://{server-address}
/fiscals/{name}/print_last_record_copy
Print last ticket copy
post
http://{server-address}
/fiscals/{name}/print_overview_sales_report
Print overview sales report
post
http://{server-address}
/fiscals/{name}/print_summary_interval_sales_report
Print summary interval sales report
post
http://{server-address}
/fiscals/{name}/print_detailed_interval_sales_report
Print detailed interval sales report
post
http://{server-address}
/fiscals/{name}/daily_sales_report
Print daily sales report
post
http://{server-address}
/fiscals/{name}/daily_sales_report_copy
Print daily sales report copy
post
http://{server-address}
/fiscals/{name}/last_daily_sales_report_copy
Print last daily sales report copy
post
http://{server-address}
/fiscals/{name}/print_nonfiscal_record
Print text
Last modified 3mo ago