Query the list of ShopCategory information in store.
Rate limit: 50 QPS by appId dimension.
POST
curl -i -X POST \
https://open.mykeeta.com/api/open/product/shopcategory/list \
-H 'Content-Type: application/json' \
-d '{
"shopId": 25381
}'Successful returns ShopCategory 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. |
Example:0
Text description corresponding to the status code, explaining the operation result or error cause to users.
Example:"Success"
Response
{ "code": 0, "message": "Success", "data": [ { … } ] }