简要描述:

  • 充值执行

请求URL:

GET/plugin.store-cashier.frontend.store.balance.balance.recharge
参数名 是否必须 类型 说明
store_id true int 门店id
recharge_money true float 充值数量
pay_type_id true int 充值方式id

返回示例:

错误时返回:

{
    "result": 0,
    "msg": "充值金额不能为空,请填写充值金额",
    "data": []
}
{
    "result": 0,
    "msg": "充值金额格式错误",
    "data": []
}
{
    "result": 0,
    "msg": "参数错误[门店id为空]",
    "data": []
}
{
    "result": 0,
    "msg": "支付方式错误",
    "data": []
}
{
    "result": 0,
    "msg": "未开启门店余额插件",
    "data": []
}
{
    "result": 0,
    "msg": "未开启余额充值",
    "data": []
}

正确时返回:

{
    "result": 1,
    "msg": "支付接口对接成功",
    "data": [
		'参考余额充值接口返回信息'
	]
}