Skip to content

ListShop

Use this api to search shops.

POST /openapi/shop/v1/list

Request Parameters

Parameter Type Required Description
page interge false Page number, default 0
size integer false Page size, default is 100, max page entries should be less than 200

Response Parameters

Name Type Description
channel string The Channel the shop belongs to, please refer to Ginee Channel for details
shopId string Shop id in Ginee
country string The Country the shop belongs to, please refer to Ginee Country for details
owner object Show owner info, currently always null
name string Shop name
authorizationStatus string The shop authorization status on Ginee, should be one if CONNECTED, DISCONNECTED, EXPIRED
shopExternalStatus string Shop status on external channel, currently always null
shopLevel string Shop level on Ginee, currently always null
productCount integer Shop product count number, currently always null
description string Shop description, currently always null
logoUrl string External shop logo url, currently always null
shopLink string External shop link url, currently always null
followerCount integer External follower count, currently always null
rateBadCount integer External shop rate bad count, currently always null
rateGoodCount integer External shop rate good count, currently always null
rateNormalCount integer External rate normal count, currently always null
ratingStar decimal External shop rating star, currently always null
externalShopId string Shop id on external channel(such shop id on Shopee)
externalShopLevel string External shop level on channel, currently always null
externalShopCreateAt string External shop create time, currently always null
createTime string Shop create time on Ginee
updateTime string Shop update time on Ginee

Request Example

Example

curl -X POST  \
-H "X-Advai-Country: ID" \
-H "Authorization: {Your Access Key} + ':' + signature" \
-H "Content-Type: application/json" \
-d  '{
        "page":0,
        "size":100
    }' \
"{Ginee Host}/openapi/shop/v1/list"

Success

{
    "code":"SUCCESS",
    "message":"OK",
    "data":{
        "channel":"BLIBLI_ID",
        "shopId":"SH5FBF46DDCFF47E00013B8216",
        "country":null,
        "name":"melady`s shop",
        "owner":null,
        "authorizationStatus":"CONNECTED",
        "shopExternalStatus":null,
        "shopLevel":null,
        "productCount":null,
        "description":null,
        "logoUrl":null,
        "shopLink":null,
        "followerCount":null,
        "rateBadCount":null,
        "rateGoodCount":null,
        "rateNormalCount":null,
        "ratingStar":null,
        "externalShopId":"GE1-70000",
        "externalShopStatus":null,
        "externalShopLevel":null,
        "externalShopCreateAt":null,
        "updateTime":"2020-12-20T21:31:57Z",
        "createTime":"2020-11-26T20:10:37Z"
    },
    "extra":null,
    "transactionId":"9ee89fd0118b8e92"
}