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 Specific Z-Report

Cloud Mock
https://mock.apidog.com/m1/1209598-0-default
Cloud Mock
https://mock.apidog.com/m1/1209598-0-default
GET
/reports/z-report/{fiscalDay}
Last modified:2026-04-07 09:09:46
Retrieves a specific z-report based on the fiscal day, if it exists. Tries to get the successful z-report first.

Request

Path Params

Header Params

Responses

🟢200Success
application/json
Returns a single Z-Report, with all of its summary pupulated with an array of Z-report Summary.
Body

🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://mock.apidog.com/m1/1209598-0-default/reports/z-report/1' \
--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
200 - Example 1
{
    "DateOpenedAt": "2026-04-06T15:14:56.942678",
    "FiscalDayNumber": 100,
    "Summaries": [
        {
            "CounterType": "Sale",
            "Currency": "ZWG",
            "TaxPercent": 15.50,
            "TaxID": 517,
            "PaymentMethod": null,
            "Amount": 105.00
        },
        {
            "CounterType": "SaleTax",
            "Currency": "ZWG",
            "TaxPercent": 15.50,
            "TaxID": 517,
            "PaymentMethod": null,
            "Amount": 14.09
        },
        {
            "CounterType": "Balance",
            "Currency": "ZWG",
            "TaxPercent": null,
            "TaxID": null,
            "PaymentMethod": "Cash",
            "Amount": 105.00
        }
    ],
    "Message": "Success",
    "IsSuccess": true
}
Modified at 2026-04-07 09:09:46
Previous
Get Z-Reports
Next
Download Z-report As PDF
Built with