文档
测试

我的豪礼卡-查询会员可用豪礼卡列表

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

接口描述

根据会员ID获取该会员所拥有的可用豪礼卡列表

请求头

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

请求参数

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

响应参数

参数名
类型
描述
必填
msg
string
响应说明
必填
code
number
响应code
必填
data
object
响应参数
必填
list
array
豪礼卡列表
必填
amt
number
豪礼卡面额
必填
balance
number
豪礼卡余额
必填
begDate
string
生效时间
必填
cardNo
string
豪礼卡卡号
必填
cardType
string
豪礼卡类型
必填
cstyle
string
卡面图片地址
必填
endDate
string
失效时间
必填
fid
string
卡面二维码id
必填
giftable
boolean
是否可转赠
必填
ispro
string
是否参与促销活动
必填
orgCode
string
餐厅编码
必填
pwd
string
豪礼卡密码
必填
regCount
number
绑定失败次数
必填
status
number
豪礼卡状态
必填
statusTxt
string
豪礼卡状态中文
必填
isact
Integer
卡激活状态:0:未激活 1:激活
必填
assetsUrl
string
图片资源URL
必填

说明 / 示例

请求示例: ``` { "param": "218A7F0EF1F6DE7B416697BA70F26DECACF130C42A4F59D422D48A6AC290F4AE", "channel": "hkl-test", "timestamp": "1581990529248" } ``` param明文示例: ``` { "memberId": "K1H93QDKI00B7" } ``` 响应示例: ``` { "msg": "操作成功", "code": 0, "data": { "list": [ { "amt": 1000, "balance": 1000, "begDate": "2020-02-17", "cardNo": "9590004727313", "cardType": "959", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "283ba72aafe63b4b5783a4d3062cf935", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "389605", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" }, { "amt": 800, "balance": 800, "begDate": "2020-02-17", "cardNo": "9588002124326", "cardType": "958", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "e3e1b942d63e36ba973f970809000450", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "657383", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" }, { "amt": 800, "balance": 800, "begDate": "2020-02-17", "cardNo": "9583003242840", "cardType": "958", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "03fd93ab077c27e613d40c1cc1bab78f", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "563633", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" }, { "amt": 500, "balance": 500, "begDate": "2020-02-17", "cardNo": "9557005200894", "cardType": "955", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "68bf4b2101246bb315b4139081390d4a", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "084950", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" }, { "amt": 500, "balance": 500, "begDate": "2020-02-17", "cardNo": "9555005218673", "cardType": "955", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "9e12be2ae442619c952b725458e487c5", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "132230", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" }, { "amt": 500, "balance": 500, "begDate": "2020-02-17", "cardNo": "9550005229629", "cardType": "955", "cstyle": "/images/stc/cs_ks1.jpg", "endDate": "2023-02-17", "fid": "fe12c0e441fc9ac6ccc15c83063a0466", "giftable": true, "ispro": "0", "message": "", "orgCode": "0201", "phone": "", "pwd": "437138", "regCount": 0, "saleable": 0, "selected": 0, "status": 5, "statusTxt": "已销售" } ], "assetsUrl": "http://assets.houcaller.com/mtest/assets" } } ```