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

创建/升级会员收费

(下行接口)合作方创建(升级)会员

授权方式:门店授权

请求描述

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

请求参数

1.公共参数

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

2.业务参数

参数名 类型 是否必填 参数描述
address String 地址
attentionWxTime Long 关注微信时间(时间戳)
birthday Long 生日
consumePwd String 消费密码(6位整数或者MD5加密)
customerId Long 顾客ID,传0表示为创建会员
customerMainId Long 顾客主ID,传0表示为创建会员
email String 电子邮箱
environmentHobby String 兴趣爱好
groupId String 顾客分组
invoiceTitle String 发票抬头
loginId String 手机号码\微信openId
loginType String 登陆类型(0:手机注册客户;1:微信注册用户;2:座机号;101:微信会员卡卡号;)
memo String 备注
name String 顾客名
sex Integer 性别(-1:未知;0:女;1:男;)
wxIconUrl String 微信头像URL
nationalTel CustomerNation 电话国际区码信息(为空默认中国)

注意: 如果loginType!=0时,需要在客如云商户后台开通微信关注及会员,否则,微信会员无法使用该接口升级为会员

CustomerNation

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

业务示例(JSON)

{
    "customerId": 800000095,
    "customerMainId": 800000095,
    "loginType": 0,
    "loginId": "18980808088",
    "consumePwd": "098f6bcd4621d373cade4e832627b4f6",
    "birthday": 1475116492,
    "sex": 1,
    "name": "李华",
    "environmentHobby": "喜欢安静",
    "memo": "",
    "invoiceTitle": "",
    "email": "adsad@asd.com",
    "address": "",
    "groupId": "",
    "wxIconUrl": "",
    "attentionWxTime": 1475116492
}

响应参数

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

CRMCustomerVO

参数名 类型 是否必填 参数描述
address String 地址
birthday Long 生日
brandId Long 品牌ID
commercialId Long 门店ID
customerId Long 顾客ID
customerMainId Long 顾客主ID
email String 电子邮箱
environmentHobby String 兴趣爱好
groupId String 顾客分组名称
invoiceTitle String 发票抬头
isDisable Integer 是否停用(1:停用;2:未停用;)
loginId String 手机号码\微信openId
loginType Integer 登录类型(0:手机注册客户;1:微信注册用户;2:座机号;101:微信会员卡卡号;)
memo String 备注
name String 顾客名
sex Integer 性别(-1:未知;0:女;1:男;)
source Integer 顾客来源(1:CALM;2:手机app;3:其他系统倒入;4:微信;5:支付宝;6:商家官网;7:百度;8:后台;9:百度外卖;10:饿了么;11:美图外卖;12:大众点评;13:熟客;14:糯米点菜;15:os mobile;16:开放平台;)
userId Long 操作人ID
wxIconUrl String 微信头像URL

响应示例(JSON)

{
    "code": 1,
    "result": {
        "brandId": 6339,
        "commercialId": 89877,
        "customerId": 800000095,
        "customerMainId": 800000095,
        "userId": -777,
        "source": 16,
        "loginType": 0,
        "loginId": "18980808088",
        "birthday": 1475116492,
        "sex": 1,
        "name": "李华",
        "environmentHobby": "喜欢安静",
        "memo": "",
        "invoiceTitle": "",
        "email": "adsad@asd.com",
        "address": "",
        "groupId": "",
        "wxIconUrl": "",
        "isDisable": 1
    }
}
目录