简要描述:

  • 门店详情接口(新增预约信息字段)

请求域名:

  • http://xx.com

请求URL:

POST/plugin.store-cashier.frontend.store.get-store-info.get-the-provider

返回示例:

正确时返回:

{
  "result": 1,
  "msg": "",
  "data": {
    "store_info": {
      "store_id": 33,
		"store_reserve_info": {
		"bottom_nav_open":1,
		"show":1,
		"div_name":"",
		"content":"",
		"is_reserve":false,
		"member_mobile":"13751613254",
		"customer_service": {
			"service":"xxxx",
			"mini_service":"xxxx",
		}
		}
    },
}

错误时返回:

  {
    "errcode": 500,
    "errmsg": "invalid appid"
  }

返回参数说明:

参数名 类型 说明
data.store_info.store_reserve_info obj 预约信息对象
data.store_info.store_reserve_info.bottom_nav_open int 门店主页底部导航,1开启,0关闭
data.store_info.store_reserve_info.show int 前端是否显示,1显示,0不显示
data.store_info.store_reserve_info.div_name int 自定义名称
data.store_info.store_reserve_info.content int 内容
data.store_info.store_reserve_info.is_reserve bool true 已预约, false未预约
data.store_info.store_reserve_info.member_mobile string 会员电话号码,未绑定为null

备注:

  • 更多返回错误代码请看首页的错误代码描述