API Documentation

Products

About Products

Within Billit, you can create products, and add information to it. Information : https://www.billit.eu/en-int/help-page/products/add-products/

This allows to used products for proposals, invoices, etc.

If you only want to send Product Info in eInvoice

If your goal is only to send invoices, and your products are managed in your ERP-software, then you do not have to store product information in Billit.

With v1/order you can fill product information directly in the message content. More info on https://docs.billit.be/docs/create-first-invoice and https://docs.billit.be/docs/how-can-i-add-certain-peppol-values-that-billit-json-does-not-support

Create a Product

Currently issue with the Post, will be updated when fixed.

Sandbox command : POST https://api.sandbox.billit.be/v1/products

You can Post 1 or multiple products with one command.

Example Json body

{
    "Items": [
        {
            "Reference": "Cleaning liquid",
            "Description": "Cleaning liquid extra info",
            "AmountExcl": 0.90000,
            "VAT": 21.00,
            "Unit": "NAR",
            "GroupID": 30279,
            "StockQuantity": 20.00,
            "MinimumBilledQuantity": 50.0000, 
            "InternalInformation": "extra info"
        }
    ]
}

Update a Product

In order to update a product, you can send a POST command and include the ProductID.

Example Json body:

{
    "Items": [
        {
        		"ProductID": 419999,  // When adding the ProductID, the existing product will be updated
						"Reference": "Cleaning liquid",
            "Description": "Cleaning liquid extra info",
            "AmountExcl": 0.90000,
            "VAT": 21.00,
            "Unit": "NAR",
            "GroupID": 30279,
            "StockQuantity": 20.00,
            "MinimumBilledQuantity": 50.0000, 
            "InternalInformation": "extra info"
        }
    ]
}

GET Product Information

Command (sandbox)Info
GET https://api.sandbox.billit.be/v1/productsGive complete list of products
GET https://api.sandbox.billit.be/v1/products/419999Get info of one product

References