Skip to content

Query ChoiceGroup list

Request

  1. Query all ChoiceGroups in store.

Rate limit: 50 QPS by appId dimension.

Bodyapplication/jsonrequired
shopIdinteger, (int64)required

store id in KeeTa

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

Responses

Successful returns ChoiceGroup 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(ChoiceGroup)

ChoiceGroup data model

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