(下行接口)顾客/会员登录
授权方式:门店授权
HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI: /open/v1/crm/login
详情可查看【公共说明】中的公共参数模块
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
loginId | String | 是 | 手机号码\微信openId\座机号码\顾客ID |
loginType | Integer | 是 | 登录类型(0:手机注册客户;1:微信注册用户;2:座机号;101:微信会员卡卡号;) |
nationalTel | CustomerNation | 否 | 电话国际区码信息(为空默认中国) |
CustomerNation
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
nation | String | 是 | 国家英文名称 |
country | String | 是 | 国家中文名称 |
nationalTelCode | String | 是 | 电话国际区码 |
{
"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:男;) |
{
"code": 1,
"result": {
"brandId": 3268,
"memberId": 5757576,
"customerId": 800000095,
"customerMainId": 800000095,
"customerName": "2ewe",
"commercialName": "门店1",
"mobile": "18987668844",
"sex": 1,
"levelId": 8123812,
"isDisable": 1
}
}