When You Submit Prices incl VAT

When your invoicing is working basis on prices including VAT, you may be missing exact information about the pricing excl. VAT. In that case Billit will generate line prices excluding VAT.

Line Fields to use:

Line PropertiesSignificationSample valueMandatory
InclLeadingParameter indicating that amounts on line should be calculated starting from the total line amount incl. VAT or nottrueyes
TotalInclTotal Line Amount including VAT. Alternative is to include the "UnitPriceIncl"149.8yes
VATPercentageVAT % on line used for calculating the price without VAT21yes

Example of Json content:

{
	"OrderNumber": "25458752",
	"OrderDate": "2025-09-03",
	"ExpiryDate": "2025-10-03",
	"OrderType": "Invoice",
  "OrderDirection": "Income",
  "Customer": {
   "Name": "Billit",
   "VATNumber": "BE0563846944",
   "PartyType": "Customer",
   "Addresses": [
        {
        "AddressType": "InvoiceAddress",
        "Name": "Billit",
        "Street": "Oktrooiplein",
        "StreetNumber": "1",
        "City": "Ghent",
        "Zipcode" : "9001",
        "Box": "box1",  
        "Language" : "NL",  
        "CountryCode": "BE"
        },
        {
        "AddressType": "DeliveryAddress", 
        "Name": "Billit",
        "Street": "Oktrooiplein",
        "StreetNumber": "1",
        "City": "Ghent",
				"Zipcode": "9001",
        "Box": "301",
        "CountryCode": "BE"
        }
   ]
   },
     "Customer": {
   "Name": "Customer Company Name",
   "VATNumber": "BE0759529999",
   "PartyType": "Customer",
   "Identifiers": [
        {
        "IdentifierType": "CBE",
        "Identifier": "0759529999"
        }
    ],
   "Addresses": [
        {
        "AddressType": "InvoiceAddress",
        "Name": "NP Noord West Brabant",
        "Street": "Oktrooiplein",
        "StreetNumber": "1a",
        "City": "Ghent",
        "Box": "301",
        "CountryCode": "BE"
        },
        {
        "AddressType": "DeliveryAddress", 
        "Name": "NP Noord West Brabant1",
        "Street": "Oktrooiplein",
        "StreetNumber": "1b",
        "City": "Ghent",
        "Zipcode" : "9001",
        "Box": "b",
        "CountryCode": "BE"
        }
   ]
   },
	"OrderLines": [
		{
			"Quantity": 10.0,
			"Description": "Product Description",
			"VATPercentage": 21.0,  // VAT Percentage
      "InclLeading": true,  //Indicating the we start from price including VAT
			"TotalIncl": 149.8  // Total Price of Line incl. VAT
		}
	]
}

Result in Peppol UBL (green : calculated by Billit)