Check External Store
Description
檢查外部門店編號。
Resource
POST /v1/external/store/check
Authorization
採用 OAuth 2.0 Bearer Token,詳細使用流程請參考 Auth Login。
Query Parameters
| Name | Type | Description |
|---|---|---|
| ubereats_uuids | list | UberEats門市編號 |
| store_id | string | 門市代碼 (optional) |
Request Example
POST /v1/external/store/check
Request
{
"store_id": "231003",
"ubereats_uuids": [
"123",
"456",
"789"
]
}
Success Response
Http-Code 204
Fail Response
{
"message": "UUID重複",
"uuids": [
"111111",
"2222222"
]
}
Response Body Parameters
| Name | Type | Description |
|---|---|---|
| message | string | 訊息 |
| uuids | list | 外部門市編號 |