商户接口列表 (店铺信息查询)

需要授权

通过该接口商户查询店铺信息

店铺信息查询接口:

GET请求地址:

环境 https请求地址
正式环境 https://openapi.duolabao.com/v1/customer/shop/list/{商户编号}
https://openapi.duolabao.com/v1/customer/shop/list/10001115106581440130027

返回参数JSON格式:

返回信息参数:

参数名称 参数类型 是否必填 最大长度 参数说明 示例值
shopList address String 32 店铺地址 国贸
mobilePhone String 32 店铺电话 13311580250
shopName String 32 店铺名称 哆啦宝店铺
shopNum String 32 店铺编号 10001214746261301330003
mapLat String 32 纬度 31.238298
mapLng String 32 经度 121.499641
oneIndustry String 32 店铺一级行业 美食
twoIndustry String 32 店铺二级行业 湘菜

请求JSON示例:

  • JSON示例
  • 1 {
    2 "data": {
    3 "shopList": [
    4 {
    5 "address": "国贸",
    6 "mobilePhone": "13311580250",
    7 "shopName": "哆啦宝店铺",
    8 "shopNum": "10001214746261301330003",
    9 "mapLat": 31.238298,
    10 "mapLng": 121.499641,
    11 "oneIndustry": "美食",
    12 "twoIndustry": "湘菜"
    13 }
    14 ]
    15 },
    16 "result": "success"
    17 }