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

会员登录收费

(下行接口)顾客/会员登录

授权方式:门店授权

请求描述

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

请求参数

1.公共参数

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

2.业务参数

参数名 类型 是否必填 参数描述
loginId String 手机号码\微信openId\座机号码\顾客ID
loginType Integer 登录类型(0:手机注册客户;1:微信注册用户;2:座机号;101:微信会员卡卡号;)
nationalTel CustomerNation 电话国际区码信息(为空默认中国)

CustomerNation

参数名 类型 是否必填 参数描述
nation String 国家英文名称
country String 国家中文名称
nationalTelCode String 电话国际区码

业务示例(JSON)

{
    "loginId":"18698442598",
    "loginType":0
}

响应参数

参数名 类型 是否必填 参数描述
code int 返回编码,详见错误码
message string 返回信息
messageUuid string 消息uuid
result CRMUserBaseInfoVO 返回响应数据,json对象或数组,可空

CRMUserBaseInfoVO

字段名 类型 是否必填 字段描述
brandId Long 品牌ID
commercialName String 顾客所属门店名称
customerId Long 顾客ID
customerMainId Long 顾客主ID
customerName String 顾客名字
isDisable Integer 会员停用(1:停用;2:未停用;)
levelId Long 等级Id
memberId Long 会员标识ID
mobile String 手机号码
sex Integer 性别(-1:未知;0:女;1:男;)

响应示例(JSON)

{
    "code": 1,
    "result": {
        "brandId": 3268,
        "memberId": 5757576,
        "customerId": 800000095,
        "customerMainId": 800000095,
        "customerName": "2ewe",
        "commercialName": "门店1",
        "mobile": "18987668844",
        "sex": 1,
        "levelId": 8123812,
        "isDisable": 1
    }
}
目录