Fiscal Harmony API
  1. Transactions
Fiscal Harmony API
  • Introduction
  • Authentication
  • Data
  • Webhooks
  • Support
  • Account
    • Get Profile
      GET
    • Get Fiscal Device
      GET
    • Subscription
      GET
  • Transactions
    • Submit Invoice
      POST
    • Submit Credit Note
      POST
    • Check Status
      POST
    • Download 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
    • Date
  1. Transactions

Invoice

{
    "InvoiceId": "string",
    "InvoiceNumber": "string",
    "Reference": "string",
    "IsDiscounted": false,
    "IsTaxInclusive": true,
    "BuyerContact": {
        "Name": "string",
        "TradeName": "string",
        "Tin": "string",
        "VatNumber": "string",
        "Phone": 0,
        "Email": "string",
        "Address": {
            "Province": "string",
            "Street": "string",
            "HouseNo": "string",
            "City": "string"
        }
    },
    "Date": "2019-08-24T14:15:22.123Z",
    "LineItems": [
        {
            "Description": "string",
            "UnitAmount": 0,
            "TaxCode": "string",
            "ProductCode": "string",
            "LineAmount": 0,
            "DiscountAmount": 0,
            "Quantity": 0,
            "CustomFields": {}
        }
    ],
    "PaymentMethod": "Cash",
    "SubTotal": 0,
    "TotalTax": 0,
    "Total": 0,
    "CurrencyCode": "string",
    "IsRetry": false
}
Built with