Recipes

Common integration patterns.

ERP → DB-Poll

Poll your ERP database for new records. Configure the SQL query and the polling interval; each new row becomes a label job.

ERP → Webhook

Your ERP calls our webhook URL when a new order is created. Payload maps directly to label variables.

REST print from any system

POST /api/v1/print-jobs
Content-Type: application/json

{
  "label_id": "lbl_8f2k3a",
  "printer": "PAL-2",
  "variables": { "sscc": "00340123452311160029" },
  "idempotency_key": "order-4711-label-1"
}