Get Order From
Description
取得訂單來源列表
Resource
GET /manager/v1/order/from
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Request Example
GET /manager/v1/order/from
Response Body Parameters
| Name | Type | Description |
|---|---|---|
| order_from | Order From | 訂單來源列表 |
Response Body Parameters - Order From
| Name | Type | Description |
|---|---|---|
| id | string | 訂單來源代碼 |
| name | string | 訂單來源名稱 |
Response Body Example
Status-Code: 200
{
"order_from": [
{
"id": "APP",
"name": "APP"
},
{
"id": "KIOSK",
"name": "KIOSK"
},
{
"id": "掃碼下單",
"name": "掃碼下單"
},
...
]
}