GetShopInfo¶
Use this api to get the specified store information.
POST /openapi/shop/v1/get
Request Parameters¶
Parameter | Type | Required | Description |
---|---|---|---|
shopId |
string |
true |
Shop id in Ginee, usually start with SH |
Response Parameters¶
Note
The response body is exactly same from the reponse parameters of ListShop.
Request Example¶
Example
curl -X POST \
-H "X-Advai-Country: ID" \
-H "Authorization: {Your Access Key} + ':' + signature" \
-H "Content-Type: application/json" \
-d '{
"shopId":"SH5FBF46DDCFF47E00013B8216"
}' \
"{Ginee Host}/openapi/shop/v1/get"
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"
}
Shop is not exist
{
"code": "DATA_NOT_EXISTED",
"message": "The data you requested does not exist",
"data": null,
"extra": null
}