Instnt Print
All examples

Pickup slip

Bestelnummer groot, met ophaaltijd en de bestelling.

What it is for
Bestelling klaarzetten om op te halen
Format
80mm rol
Pickup slip — 80mm rol
Pickup slip · 80mm rol

Fields you send

{{bestelnummer}}{{naam}}{{tijd}}{{totaal}}{{telefoon}}

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": "Afhaalbon",
    "data": {
          "bestelnummer": "…",
          "naam": "…",
          "tijd": "…",
          "totaal": "…",
          "telefoon": "…",
          "regels": [
                {
                      "aantal": "…",
                      "omschrijving": "…",
                      "bedrag": "…"
                }
          ]
    }
  }'
Read the documentation →