This service provides the API endpoints for queuing print jobs.
GET /api/health - Health checkPOST /api/print-product-label - Queue a product label print jobPOST /api/print-serial-label - Queue a serial number label print job (small 50mm x 25mm labels)POST /api/lookup-serial - Lookup serial number and automatically queue product labelcurl -X POST /api/print-product-label \
-H "Content-Type: application/json" \
-d '{"serialNumber": "12345", "activationCode": "ABC123", "skuBarcode": "SKU123"}'curl -X POST /api/print-serial-label \
-H "Content-Type: application/json" \
-d '{"serialNumber": "12345", "quantity": 2}'curl -X POST /api/lookup-serial \
-H "Content-Type: application/json" \
-d '{"serialNumber": "12345"}'