# 获取积分配置
# 接口说明
通过该接口可获取积分配置信息。
# 接口调用请求说明
GET https://api.weixin.qq.com/channels/ec/vip/score/get?access_token=ACCESS_TOKEN
# 返回参数说明
参数 | 类型 | 描述 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
conf.gain_rule.pay_amount_rule.pay_value | string | 获取来源为消费金额时的消费金额,单位为分 |
conf.gain_rule.pay_time_rule.gain_value | string | 获取来源为消费次数时消费1次的获得的积分 |
conf.deduct_rule.open_mgr | number | 抵扣规则中的下单时抵扣开关,0为未开启,1为开启 |
conf.deduct_rule.ratio | string | 抵扣规则中的抵扣比例, 0.01元对应的积分 |
conf.deduct_rule.limit | string | 抵扣规则中的抵扣上限,每一笔订单最多可抵扣的积分 |
# 返回参数示例
{
"errcode": 0,
"errmsg": "ok",
"conf": {
"gain_rule": {
"pay_amount_rule": {
"pay_value": "100"
},
"pay_time_rule": {
"gain_value": "1"
}
},
"deduct_rule": {
"open_mgr": 1,
"ratio": "100",
"limit": "100"
}
}
}
# 错误码
错误码 | 错误描述 |
---|---|
公共错误码 | - |
10100001 | 系统错误 |
10100003 | 信息不存在 |