This API provides comprehensive menu management capabilities for Keeta platform integration, including menu synchronization, product status management, and real-time notifications.
- Modify ChoiceGroupSkus available/unavailable status(in batch)
Keeta Menu Management API (v.1.0.0)
https://open.mykeeta.com/api/open/
https://open.mykeeta.com/api/open/product/choicegroup/batchdel
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://open.mykeeta.com/api/open/product/choicegroup/batchdel \
-H 'Content-Type: application/json' \
-d '{
"shopId": 25381,
"choiceGroupIdList": [
3123,
4343
]
}'
Batch deletion result.
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": [ 0 ], "errorList": [ { … } ] }
https://open.mykeeta.com/api/open/product/choicegroupskustatus/batchupdate
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://open.mykeeta.com/api/open/product/choicegroupskustatus/batchupdate \
-H 'Content-Type: application/json' \
-d '{
"shopId": 0,
"status": 0,
"choiceGroupSkuIdPackList": [
{
"choiceGroupId": 0,
"choiceGroupSkuIds": [
0
]
}
]
}'
Batch status update result.
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": 0 }