1. Reports (EXPERIMENTAL)
Fiscal Harmony API
  • Introduction
  • Authentication
  • Data
  • Support
  • Webhooks
  • Account
    • Test
      POST
    • Get Profile
      GET
    • Get Fiscal Device
      GET
    • Subscription
      GET
  • Transactions
    • Submit Invoice
      POST
    • Submit Credit Note
      POST
    • Check Status
      POST
    • Download PDF
      GET
  • Reports (EXPERIMENTAL)
    • Get Z-Reports
      GET
    • Get Specific Z-Report
      GET
    • Download Z-report As PDF
      GET
  • Mappings
    • Tax Mappings
      • Get All TaxMappings
      • Add Tax Mapping
      • Get Specific Tax Mapping
      • Update Tax Mapping
      • Delete Tax Mapping
    • Currency Mappings
      • Supported Currencies
      • Get All CurrencyMappings
      • Add Currency Mapping
      • Get Specific Currency Mapping
      • Update Currency Mapping
      • Delete Currency Mapping
  • Schemas
    • Account
      • Profile
      • FiscalDevice
      • DeviceConfig
      • ApplicableTax
      • BillingPlan
      • BillingStatus
      • Subscription
    • Mappings
      • CurrencyMapping
      • TaxMapping
    • Transactions
      • Invoice
      • CreditNote
      • BuyerContact
      • PaymentMethodType
      • LineItem
      • StatusRequest
    • Reports
      • Z-Report
      • Z-Report Summary
    • Date
    • Paged
    • Bad Reponse
  1. Reports (EXPERIMENTAL)

Get Z-Reports

Developing
Cloud Mock
https://mock.apidog.com/m1/1209598-0-default
Cloud Mock
https://mock.apidog.com/m1/1209598-0-default
GET
/reports/z-report
Last modified:2026-04-07 12:04:58
This is the endpoint for getting z-reports (close day reports) for the fiscal device. All z-reports are received paginated, allowing for choosing a page size, page index, viewing the total number of items and sorting by order. Not adding any query parameters will make the request attempt to show the latest 100 Z-reports.

Request

Query Params

Header Params

Responses

🟢200Success
application/json
Returns a Paged result of a list of Z-Reports, which is sorted by the order of your choice and paged based on your pagination settings. The summaries of each Z-report will be omitted and may return as an
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mock.apidog.com/m1/1209598-0-default/reports/z-report?since_day=230&since_date=2026-04-06T10:29:51&size=50&page=1&order=desc' \
--header 'X-Api-Key: YOUR_API_KEY' \
--header 'X-Application: YOUR_APPLICATION_ID' \
--header 'X-App-Station: YOUR_APP_STATION' \
--header 'X-App-Version: 1'
Response Response Example
{
    "Items": [
        {
            "OpenedAt": "2026-04-06T15:14:56.942678",
            "ClosedAt": "2026-04-06T20:01:06.826392",
            "FiscalDayNumber": 100,
            "Summaries": [],
            "Message": "Success",
            "IsSuccess": true
        }
    ],
    "TotalItemCount": 1,
    "Page": 1,
    "PageSize": 50
}
Modified at 2026-04-07 12:04:58
Previous
Reports (EXPERIMENTAL)
Next
Get Specific Z-Report
Built with