This API provides comprehensive menu management capabilities for Keeta platform integration, including menu synchronization, product status management, and real-time notifications.
- Query products list
Keeta Menu Management API (v.1.0.0)
https://open.mykeeta.com/api/open/
https://open.mykeeta.com/api/open/product/categoryproperty/list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://open.mykeeta.com/api/open/product/categoryproperty/list \
-H 'Content-Type: application/json' \
-d '{
"shopId": 25381,
"categoryId": -1
}'
Successful returns category attribute list.
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
Enum Value | Description |
---|---|
0 | The request was executed successfully. |
Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Text description corresponding to the status code, explaining the operation result or error cause to users.
{ "code": 0, "message": "Success", "data": [ { … } ] }
https://open.mykeeta.com/api/open/product/spu/list
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://open.mykeeta.com/api/open/product/spu/list \
-H 'Content-Type: application/json' \
-d '{
"shopId": 25381
}'
Successful returns product list.
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
Enum Value | Description |
---|---|
0 | The request was executed successfully. |
Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Text description corresponding to the status code, explaining the operation result or error cause to users.
{ "code": 0, "message": "Success", "data": [ { … } ] }
https://open.mykeeta.com/api/open/product/spu/detail
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://open.mykeeta.com/api/open/product/spu/detail \
-H 'Content-Type: application/json' \
-d '{
"shopId": 25381,
"spuId": 2
}'
Successful returns product detail.
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
Enum Value | Description |
---|---|
0 | The request was executed successfully. |
Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Text description corresponding to the status code, explaining the operation result or error cause to users.
{ "code": 0, "message": "Success", "data": { "id": 12345, "name": "Spicy Chicken Burger", "sourceLanguageType": "en", "nameTranslation": "辣雞腿漢堡", "targetLanguageType": "zh-HK", "nameTranslateType": 1, "status": 1, "description": "Spicy Chicken Burger description", "descSourceLanguageType": "en", "descriptionTranslation": "辣雞腿漢堡描述", "descTargetLanguageType": "zh-HK", "descriptionTranslateType": 1, "shopCategoryList": [ … ], "pictureList": [ … ], "propertyList": [ … ], "skuList": [ … ], "availableTime": { … }, "isSpecialty": 0, "openItemCode": "SPU#10001", "shopCategoryOpenItemCodeList": [ … ], "userGetModeList": [ … ] } }