分页查询商户店铺
接口说明:分页查询商户创建店铺,供订单计费使用
注:仅状态为审核通过的店铺可计费使用
请求url
- /openapi/merchants/v5/queryAllStores
接口协议以及签名计算
测试联调
参数 |
示例 |
说明 |
clientId |
sssHhHPkzCNWG1sFs |
App-key |
shopId |
20000000000001715 |
商户ID |
timestamp |
1634095503814 |
毫秒级时间戳 |
data |
参考入参示例 |
业务入参 |
sign |
91B703053DD17E4E4C296577574B8071 |
签名 |
参数 |
字段描述 |
类型/是否必传 |
说明 |
storeName |
店铺名称 |
String(20)/NO |
根据店铺名称模糊搜索 |
pageNo |
页码 |
Integer(8)/YES |
页码最小值为1 |
pageSize |
页数 |
Integer(8)/YES |
页数最小值为1最大值为100 |
参数 |
类型/是否必传 |
说明 |
示例 |
storeId |
String(20)/YES |
店铺ID |
392907 |
thirdStoreId |
String(50)/NO |
对象弃用,请忽略 |
|
storeName |
String(80)/YES |
店铺名称 |
闪送CBD店铺 |
cityId |
Long(20)/YES |
店铺所在城市ID |
1101 |
cityName |
String(20)/YES |
店铺所在城市名称 |
北京市 |
contactsMobile |
String(30)/YES |
店铺联系人手机号 |
11011291089 |
address |
String(80)/YES |
店铺地址 |
中关村东升科技园国际园 |
addressDetail |
String(80)/NO |
店铺地址详情 |
|
latitude |
String(20)/YES |
纬度(百度坐标系) |
40.048136 |
longitude |
String(20)/YES |
经度(百度坐标系) |
116.378683 |
goodType |
Integer(8)/YES |
店铺类型标签(详见下放类型标签枚举) |
5 |
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:sssHhHPkzCNWG1sFs
shopId:20000000000001715
timestamp:1634095503814
sign:91B703053DD17E4E4C296577574B8071
data:{"pageNo":1,"pageSize":2,storeName:"闪送"}
{
"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
}
]
}