Ticketline
Order queue
Send orders from anywhere
Your point of sale, online ordering, or kitchen system can drop tickets straight into the queue. POST JSON to /api/orders. With auto-print on, they print the moment they arrive.
curl -X POST /api/orders \
-H "Content-Type: application/json" \
-d '{
"type": "delivery",
"reference": "ONLINE-204",
"customer": "Sam R.",
"items": [
{ "name": "Margherita pizza", "quantity": 1, "price": 14.5,
"modifiers": ["Extra basil"] },
{ "name": "Garlic knots", "quantity": 2, "price": 5 }
],
"notes": "Leave at the door",
"source": "website"
}'