Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 1.91 KB

File metadata and controls

25 lines (18 loc) · 1.91 KB

Printers vs. devices

The Expedy API splits its hardware into two resources. Picking the right one is the single most important decision when you integrate.

printers devices
What it is A direct connection to an Expedy cloud thermal receipt printer. A connection to an Expedy-managed gateway (today: Raspberry Pi) driving a third-party USB printer.
Hardware Expedy cloud printer (thermal). Expedy Raspberry Pi + any supported USB printer plugged into it.
Print endpoint POST /printers/{printer_uid}/print POST /devices/{device_uid}/usb/{usb_port}/print
Payload field printer_msg usb_msg
Typical media 58 / 80 / 104 mm thermal receipt paper. Labels (shipping, product, gift card), A4 paper, photo paper — anything the attached printer supports.
Typical use cases Order tickets, preparation slips, POS receipts, information notifications — restaurants, hospitality. Scenarios that need a non-thermal medium: transport labels, personalized gift cards, bulk-product labels with expiry date + weight, photo prints…

How to choose

  • If it's a receipt (ticket, order, info notification, coupon), use printers.
  • If it's a label or any other non-thermal medium, use devices + a USB port on the Raspberry Pi.

The tag language used inside printer_msg — layout, actions, parameter tags — works identically inside usb_msg when the attached printer is ESC/POS. For label / PDF printers attached to the Pi, usb_msg is simply the raw URL of the PDF to print (see Print PDF).

Related