Skip to content

Query ShopCategory list

Request

Query the list of ShopCategory information in store.

Rate limit: 50 QPS by appId dimension.

Bodyapplication/jsonrequired
shopIdinteger, (int64)required

store id in KeeTa

Example:25381
POST
/product/shopcategory/list
curl -i -X POST \
  https://open.mykeeta.com/api/open/product/shopcategory/list \
  -H 'Content-Type: application/json' \
  -d '{
    "shopId": 25381
  }'

Responses

Successful returns ShopCategory list.

Bodyapplication/json
codeintegerrequired

A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.

Enum ValueDescription
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
messagestringrequired

Text description corresponding to the status code, explaining the operation result or error cause to users.

Example:"Success"
dataArray of objects(ShopCategory)

In-store ShopCategory list

Response
{ "code": 0, "message": "Success", "data": [ {} ] }