文档
测试

儿童会员卡-查询儿童会员信息

POST
http://crm.houcaller.com/htest/openapi/v1/listHbsChildInfo

接口描述

根据会员ID获取该会员绑定的和曾经绑定的所有的儿童会员信息

请求头

参数名
类型
描述
必填
Content-Type
String
application/json
必填

请求参数

参数名
类型
描述
必填
channel
string
渠道名
必填
timestamp
string
时间戳
必填
param
string
参数(对json字符串进行DES加密)
必填
memberId
string
会员ID
必填

响应参数

参数名
类型
描述
必填
msg
string
响应说明
必填
code
number
响应code
必填
data
object
响应参数
必填
unbindList
array
已解绑儿童会员列表
必填
childList
array
儿童会员列表
必填
bindChannel
string
绑定渠道
必填
bindTime
string
绑卡时间
必填
birthday
string
儿童生日
必填
cardNo
string
儿童卡号
必填
cardNoCipher
string
儿童卡号唯一索引
必填
constellation
string
儿童星座
必填
id
string
主键ID
必填
interest
string
兴趣爱好
必填
name
string
儿童姓名
必填
orgCode
string
餐厅编码
必填
password
string
儿童卡密钥
必填
relation
string
儿童亲属关系
必填
scoCardNo
string
会员卡号
必填
scoMemberId
string
会员ID
必填
sex
string
儿童性别
必填
state
string
儿童会员卡状态
必填
zodiac
string
儿童生肖
必填

说明 / 示例

请求示例: ``` { "param": "218A7F0EF1F6DE7B15D8F478E819984BC9C4BE8BBB28E6A278F37B2C652E5222", "channel": "hkl-test", "timestamp": "1584948446084" } ``` param明文示例: ``` { "memberId": "JBLE18FNU0008" } ``` 响应示例: ``` { "msg": "操作成功", "code": 0, "data": { "unbindList": [], "childList": [ { "bindChannel": "card", "bindTime": "2020-01-16 10:41:03", "birthday": "2020-01-16", "cardNo": "HCM0004931865", "cardNoCipher": "81ab10a2d583efaf4c5b9f1a19fa432a", "constellation": "摩羯座", "id": "5cbd118f2f207220b467a244", "inputDate": "2019-04-22 08:57:10", "interest": "唱歌;书法;棋艺;计算机;其他;", "lockVersion": 1, "modifyDate": "2020-01-16 10:41:03", "name": "小鑫鑫", "orgCode": "0103", "password": "111111", "paystate": "", "punchNum": 0, "relation": "1", "remark": "", "scoCardNo": "9012046353720", "scoMemberId": "JBLE18FNU0008", "sex": "1", "state": "1", "zodiac": "rat" }, { "bindChannel": "card", "bindTime": "2020-01-16 10:37:39", "birthday": "2020-01-16", "cardNo": "HCM0004931886", "cardNoCipher": "38cac26f3824d7decd3070a9cf4b3ba9", "constellation": "摩羯座", "id": "5cbd118f2f207220b467a246", "inputDate": "2019-04-22 08:57:10", "interest": "唱歌;绘画;棋艺;计算机;其他;", "lockVersion": 1, "modifyDate": "2020-01-16 10:37:39", "name": "小鑫", "orgCode": "0103", "password": "111111", "paystate": "", "punchNum": 0, "relation": "1", "remark": "", "scoCardNo": "9012046353720", "scoMemberId": "JBLE18FNU0008", "sex": "1", "state": "1", "zodiac": "rat" }, { "bindChannel": "card", "bindTime": "2020-01-06 13:58:32", "birthday": "2019-12-25", "cardNo": "HCM0004932637", "cardNoCipher": "5398b02beeff4da6422eacf0a3c9f99e", "constellation": "摩羯座", "id": "5cbd118f2f207220b467a291", "inputDate": "2019-04-22 08:57:10", "interest": "计算机;", "lockVersion": 1, "modifyDate": "2020-01-06 13:58:32", "name": "小鑫", "orgCode": "0101", "password": "000000", "paystate": "", "punchNum": 0, "relation": "1", "remark": "", "scoCardNo": "9012046353720", "scoMemberId": "JBLE18FNU0008", "sex": "1", "state": "1", "zodiac": "pig" } ] } } ```