接口说明:
调用接口获取当前会员的充值余额
请求说明:
HTTP请求方式:POST
返回数据格式:JSON
请求路径:callback(调用方提供支持POST方式的接口地址)
请求参数:
字段 | 类型 | 为空 | 描述 |
Brand | string | 否 | |
OldCode | string | 否 | 会员下线卡号 |
Code | string | 否 | 线上卡号 |
Mobile | string | 否 | 手机号 |
返回参数Json数组:
字段 | 类型 | 为空 | 描述 |
CardNo | string | 否 | 卡号 |
Money | decimal | 否 | 余额 |
MoneyTotal | decimal | 是 | 累计充值金额 |
请求参数示例代码(json对象):
{ "Brand": "ea001" , "OldCode": "EZ00001230", "Mobile": "13661409724", "Code": "ea001" }
系统级返回结果示例(json对象):
{ "Status": true, "StatusCode": 200, "Msg": "成功", "Timestamp": "20150622093101", "Sign": "6ECC9BF07C69E80F6D8552FF7B2E7A8FCA2CC80E", "Result": 见业务返回结果示例, }
业务返回结果示例(json对象数组):
[{ "CardNo":"001001", "Money": 90.0, "MoneyTotal": 1000.00 },{ "CardNo":"001001", "Money": 90.0, "MoneyTotal": 1000.00 }]