1. 身份認證 (Authentication)
所有 API 請求均須於 HTTP Header 中附帶授權金鑰:
Host: api.teamotto.com.cn
Content-Type: application/json
Authorization: Bearer pno_live_99f182c73810a4b2e
X-Store-ID: 1024
提供完整 RESTful API 介面,涵蓋門店桌位、菜單庫存、掃碼下單、支付對接與 KDS 廚房系統,支援 POS 與 ERP 無縫整合。
所有 API 請求均須於 HTTP Header 中附帶授權金鑰:
所有介面均以統一結構回傳,code 為業務狀態碼,data 為業務資料載體。
{
"code": 200,
"data": [
{ "store_id": 1024, "name": "中環總店", "status": "open" },
{ "store_id": 1025, "name": "旺角分店", "status": "open" }
]
}
{
"code": 200,
"data": [
{ "table_no": "A01", "seats": 4, "status": "occupied", "active_order_id": "PNO202608130088" },
{ "table_no": "A02", "seats": 2, "status": "vacant", "active_order_id": null }
]
}
{
"code": 200,
"categories": [
{
"category_id": 10,
"name": "熱門港式點心",
"items": [
{ "item_id": 8012, "name": "招牌菠蘿油", "price": 18.00, "stock": 45 },
{ "item_id": 8015, "name": "絲滑凍奶茶", "price": 22.00, "stock": 120 }
]
}
]
}
{
"stock": 0,
"action": "sold_out" // sold_out / restock
}
{
"table_no": "A03",
"order_type": "dine_in",
"items": [
{ "item_id": 8012, "qty": 2, "price": 18.00 },
{ "item_id": 8015, "qty": 1, "price": 22.00, "options": ["少冰", "微糖"] }
]
}
{
"code": 200,
"data": {
"order_id": "PNO202608130092",
"total_amount": 58.00,
"status": "pending_payment"
}
}
{
"code": 200,
"data": {
"order_id": "PNO202608130092",
"status": "paid", // pending_payment / paid / cooking / done
"kds_stations": ["bar_station", "wok_station"]
}
}
{
"station": "bar_station",
"status": "completed" // pending / cooking / completed
}
{
"code": 200,
"data": {
"openid": "oXz9s5k...",
"points": 1280,
"tags": ["下午茶常客", "奶茶愛好者"]
}
}