Instnt Print
All examples

Receipt

Artikelen, totaal en btw. De gewone bon voor aan de kassa.

What it is for
Verkoop aan de balie
Format
80mm rol
Receipt — 80mm rol
Receipt · 80mm rol

Fields you send

{{zaak}}{{adres}}{{btwnummer}}{{bonnummer}}{{totaal}}{{btw}}{{betaalwijze}}

Lists · regels

A list repeats: one line per item, as many as you send.

{{aantal}}{{omschrijving}}{{bedrag}}

Print it

One request. The server draws it and the bridge prints it — you send values, not a document.

curl https://instntprint.com/v1/jobs \
  -H "Authorization: Bearer <sleutel>" \
  -d '{
    "printer": "Counter",
    "template": "Kassabon",
    "data": {
          "zaak": "…",
          "adres": "…",
          "btwnummer": "…",
          "bonnummer": "…",
          "totaal": "…",
          "btw": "…",
          "betaalwijze": "…",
          "regels": [
                {
                      "aantal": "…",
                      "omschrijving": "…",
                      "bedrag": "…"
                }
          ]
    }
  }'
Read the documentation →