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

修改会员详情收费

(下行接口)合作方修改会员基本信息

授权方式:门店授权

请求描述

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

请求参数

1.公共参数

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

2.业务参数

参数名 类型 是否必填 参数描述
address String 地址
birthday Long 生日,单位:毫秒
consumePwd String 消费密码(6位整数或者MD5加密)
customerId Long 顾客ID,通过会员登录接口获取
email String 电子邮箱
environmentHobby String 兴趣爱好
groupId String 顾客分组
invoiceTitle String 发票抬头
memo String 备注
name String 顾客名
sex Integer 性别(-1:未知;0:女;1:男;)

业务示例(JSON)

{
    "customerId": 888234234,
    "consumePwd": "047ea2107743674078d60a939d5b1da2",
    "birthday": 888234234,
    "sex": 1,
    "name": "李华",
    "environmentHobby": "喜欢安静",
    "memo": "",
    "invoiceTitle": "",
    "email": "aaa@qq.com",
    "address": "",
    "groupId": ""
}

响应参数

参数名 类型 是否必填 参数描述
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
nation String 国家英文名称
country String 国家中文名称
nationalTelCode String 电话国际区码

响应示例(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
    }
}
目录