分页查询商户店铺
接口说明:分页查询商户创建店铺,供订单计费使用
注:仅状态为审核通过的店铺可计费使用
- 请求url
- /openapi/developer/v5/queryAllStores
参数 |
示例 |
说明 |
clientId |
ss6DzHy9GvHB46Jgo |
App-key |
accessToken |
70882965-5e51-463f-a746-7bcf1b3f1c34 |
通过商户授权获取 |
timestamp |
1631862240982 |
毫秒级时间戳 |
data |
参考入参示例 |
业务入参 |
sign |
955E0C0DDAF87B9D26E0171BEF65C0D8 |
签名 |
参数 |
字段描述 |
类型/是否必传 |
说明 |
storeName |
店铺名称 |
String(20)/NO |
根据店铺名称模糊搜索 |
pageNo |
页码 |
Integer(8)/YES |
页码最小值为1 |
pageSize |
页数 |
Integer(8)/YES |
页数最小值为1最大值为100 |
参数 |
类型/是否必传 |
说明 |
示例 |
storeId |
String(20)/YES |
店铺ID |
393549 |
thirdStoreId |
String(50)/NO |
对象弃用,请忽略 |
|
storeName |
String(80)/YES |
店铺名称 |
小朋b环境开发者 |
cityId |
Long(20)/YES |
店铺所在城市ID |
1101 |
cityName |
String(20)/YES |
店铺所在城市名称 |
北京市 |
contactsMobile |
String(30)/YES |
店铺联系人手机号 |
17500000000 |
address |
String(80)/YES |
店铺地址 |
北京市海淀区博彦科技大厦 |
addressDetail |
String(80)/NO |
店铺地址详情 |
c座 |
latitude |
String(20)/YES |
纬度(百度坐标系) |
40.05496086180092 |
longitude |
String(20)/YES |
经度(百度坐标系) |
116.2894305397218 |
goodType |
Integer/(8)YES |
店铺类型标签(详见下放类型标签枚举) |
10 |
goodName |
String(8)/YES |
店铺类型标签名称(详见下放类型标签枚举) |
其他 |
status |
Integer(8)/YES |
店铺状态:0-禁用、1-待审核、2-驳回、3-审核通过 |
3 |
totalNum |
Integer(8)/YES |
店铺总条数 |
5 |
店铺类型标签 |
店铺类型标签名称 |
1 |
文件 |
3 |
数码 |
5 |
蛋糕 |
6 |
餐饮 |
7 |
鲜花 |
9 |
汽配 |
10 |
其他 |
12 |
母婴 |
13 |
医药健康 |
15 |
商超 |
16 |
水果 |
clientId:ss6DzHy9GvHB46Jgo
accessToken:70882965-5e51-463f-a746-7bcf1b3f1c34
timestamp:1631862240982
data:{"pageNo":1,"pageSize":2,storeName:"闪送"}
sign:955E0C0DDAF87B9D26E0171BEF65C0D8
{
"status": 200,
"msg": null,
"data": [
{
"storeId": "392907",
"thirdStoreId": null,
"storeName": "闪送CBD店铺",
"cityId": 1101,
"cityName": "北京市",
"contactsMobile": "11011291089",
"address": "中关村东升科技园国际园",
"addressDetail": "",
"latitude": "40.048136",
"longitude": "116.378683",
"goodType": 5,
"goodName": "蛋糕",
"status": 3,
"totalNum": 5
},
{
"storeId": "4006973",
"thirdStoreId": "",
"storeName": "新增闪送CBD店铺",
"cityId": 1101,
"cityName": "北京市",
"contactsMobile": "17500000000",
"address": "中关村东升科技园国际园",
"addressDetail": "201",
"latitude": "40.048136",
"longitude": "116.378683",
"goodType": 6,
"goodName": "餐饮",
"status": 3,
"totalNum": 5
}
]
}