Get Order Detail
Description
查詢訂單詳情
Resource
GET /manager/v1/order/detail
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Query Parameters
| Name | Type | Description |
|---|---|---|
| company_id | string | 公司編號 |
| worder_id | string |
Request Example
GET /manager/v1/order/detail?company_id=0000&worder_id=100322031400002
Response Body Parameters
| Name | Type | Description |
|---|---|---|
| order_detail | Orders Detail | 訂單詳情列表 |
Response Body Parameters - Orders Detail
| Name | Type | Description |
|---|---|---|
| product_name | string | 商品品名 |
| worder_sno | string | 訂單序號 |
| comb_sale_sno | string | |
| product_id | string | 商品編號 |
| product_external_name | string | 平台名稱 |
| taste_remark | string | 口味內容 |
| qty | string | 數量 |
| unit_price | float | 單價 |
| item_discount | float | 折價 |
| redeem_point | string | 兌換點數 |
Response Body Example
Status-Code: 200
{
"order_detail": [
{
"product_name": null,
"worder_sno": 1,
"comb_sale_sno": null,
"product_id": "PluNoFound",
"product_external_name": "U-泰式燒雞醬炸雞飯|06003",
"taste_remark": "",
"qty": 1.0,
"unit_price": 130.0,
"item_discount": 0.0,
"redeem_point": null
}
]
}