Instnt Print
All examples

End-of-day report

Wat er die dag is omgegaan, per betaalwijze.

What it is for
Kassa afsluiten aan het eind van de dag
Format
80mm rol
End-of-day report — 80mm rol
End-of-day report · 80mm rol

Fields you send

{{zaak}}{{kassa}}{{totaal}}{{aantal_bonnen}}{{gemiddeld}}

Lists · betaalwijzen

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

{{naam}}{{bedrag}}

Lists · btw

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

{{tarief}}{{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": "Dagafsluiting",
    "data": {
          "zaak": "…",
          "kassa": "…",
          "totaal": "…",
          "aantal_bonnen": "…",
          "gemiddeld": "…",
          "betaalwijzen": [
                {
                      "naam": "…",
                      "bedrag": "…"
                }
          ],
          "btw": [
                {
                      "tarief": "…",
                      "bedrag": "…"
                }
          ]
    }
  }'
Read the documentation →