• 开发者平台
  • >
  • 餐饮文档中心

获取门店列表 收费

(下行接口)合作方调用该接口可以获取门店列表。(可获取的门店列表是公共参数中的门店对应品牌下的门店列表)

授权方式:门店授权

请求描述

HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI:  /open/v1/shop/shoplist

请求参数

1.公共参数

详情可查看【公共说明】中的公共参数模块

2.业务参数

业务示例(JSON)

响应参数

参数名 类型 是否必填 参数描述
code Int 返回编码,详见错误码
message String 返回信息
messageUuid String 消息uuid
result List <OpenShopInfoVO> 返回响应数据,json对象或数组,可为空

OpenShopInfoVO

参数名 类型 是否必填 参数描述
busiCode Integer 商圈编码
busiName String 商圈名称
commercialContact String 联系人名称
commercialID Long 门店ID
commercialLogo String logo url
commercialName String 门店名称
commercialPhone String 联系人电话
dcode String 区编码
dname String 区名称
pcode String 省编码
pname String 省名称
status Integer 商户状态 0-可用; -1-不可用; 1-预装
openTimes List<OpenTimeVo> 营业时间、送餐时间
areaId String 区域ID
areaCode String 区域Code
areaName String 区域名称
cityCode String 城市编码
cityName String 城市名称

OpenTimeVo

参数名 类型 是否必填 参数描述
type Long 餐饮时段(0:整周;1:整周中餐;2:整周晚餐;3:工作日;4:工作日中餐;5:工作日晚餐;6:周末;7:周末中餐;8:周末晚餐)
items List<OpenTimeItemVo> 时间段信息
timeType Long 时间类型; 0.营业时间,1.送餐时间

OpenTimeItemVo

参数名 类型 是否必填 参数描述
type Integer 餐饮时段(0:整周;1:整周中餐;2:整周晚餐;3:工作日;4:工作日中餐;5:工作日晚餐;6:周末;7:周末中餐;8:周末晚餐)
startTime String 开始时间
endTime String 结束时间信息

响应示例(JSON)

{
    "result": [
        {
            "commercialID": 810094162,
            "commercialName": "体验区测试品牌01store品牌1门店1",
            "commercialLogo": null,
            "commercialContact": "哈哈",
            "commercialPhone": "15928515739",
            "status": 0,
            "busiCode": "10999",
            "busiName": "朝阳区",
            "areaId": "110105",
            "areaCode": "010",
            "areaName": "朝阳区",
            "cityCode": "110100",
            "cityName": "北京市",
            "openTimes": [
                {
                    "timeType": 0,
                    "type": 3,
                    "items": [
                        {
                            "type": 1,
                            "startTime": "08:00",
                            "endTime": "13:00"
                        },
                        {
                            "type": 2,
                            "startTime": "12:00",
                            "endTime": "08:00"
                        }
                    ]
                },
                {
                    "timeType": 1,
                    "type": 0,
                    "items": [
                        {
                            "type": 0,
                            "startTime": "00:00",
                            "endTime": "23:00"
                        }
                    ]
                }
            ],
            "pname": "北京市",
            "dname": "朝阳区",
            "pcode": "110000",
            "dcode": "110105"
        },
        {
            "commercialID": 810097768,
            "commercialName": "体验区测试品牌01体验区测试品牌01store品牌1门店2",
            "commercialLogo": null,
            "commercialContact": "哈哈",
            "commercialPhone": "15928515739",
            "status": 0,
            "busiCode": "13946",
            "busiName": "晋源区",
            "areaId": "140110",
            "areaCode": "0351",
            "areaName": "晋源区",
            "cityCode": "140100",
            "cityName": "太原市",
            "openTimes": [
                {
                    "timeType": 0,
                    "type": 0,
                    "items": [
                        {
                            "type": 0,
                            "startTime": "00:00",
                            "endTime": "00:00"
                        }
                    ]
                },
                {
                    "timeType": 1,
                    "type": 0,
                    "items": [
                        {
                            "type": 0,
                            "startTime": "00:00",
                            "endTime": "00:00"
                        }
                    ]
                }
            ],
            "pname": "山西省",
            "dname": "晋源区",
            "pcode": "140000",
            "dcode": "140110"
        }
    ],
    "code": 0,
    "message": "成功[OK]",
    "messageUuid": "bb8c1316cd4949369f41fd1f0607adda",
    "apiMessage": null
}
目录