(下行接口)合作方给客如云会员充值
授权方式:门店授权
注意:非手机号注册的会员不可通过本接口储值
HTTP请求方式:POST
HTTP请求头类型:Content-Type=application/json
URI: /open/v1/crm/member/recharge
详情可查看【公共说明】中的公共参数模块
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
customerId | Long | 是 | 顾客id |
cardType | Integer | 是 | 卡类型 1:虚拟账户 2:会员卡 3:匿名卡 4:权益卡 |
cardNum | String | 否 | 卡号,匿名卡\权益卡充值时必填 虚拟账户和会员卡不填 |
businessType | Integer | 是 | 业务类型 1:储值充值 |
amount | Integer | 是 | 充值金额:单位分 |
tpOrderId | String | 是 | 第三方订单号 |
remark | String | 否 | 备注 |
{
"amount": 0,
"businessType": 1,
"cardNum": "string",
"cardType": 1,
"customerId": 0,
"remark": "string",
"tpOrderId": "string"
}
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
code | Int | 是 | 返回编码,详见错误码 |
message | String | 是 | 返回信息 |
messageUuid | String | 是 | 消息uuid |
result | MemberRechargeResultVO | 是 | 返回响应数据,json对象或数组,可空 |
MemberRechargeResultVO
参数名 | 类型 | 是否必填 | 参数描述 |
---|---|---|---|
balance | String | 是 | 余额 |
{
"code": 0,
"message": "string",
"messageUuid": "string",
"result": {
"balance": "string"
}
}