简要描述:
- 余额
请求URL:
POST:一级域名/wapapi/addons/execute/addons/channel/controller/channel/action/MyChannelBalance
参数:
参数名 | 是否必须 | 类型 | 说明 |
---|
返回示例:
正确时返回:
{
"data": {
"is_use": 0,
"balance": "15.00",
"can_use_money": 5,
"freezing_balance": "10.00",
"my_profit": 6.3,
"my_bonus": 0.015
"is_proceeds":true //说明开启的是货款支付
},
"code": 0
}
错误时返回:
{
"code": -1,
"message": "系统繁忙"
}
返回参数说明:
参数名 | 类型 | 说明 | |
---|---|---|---|
is_use | int | 提现是否开启,1:开启,0:关闭,开启则显示页面提现按钮,否则则关闭 | |
balance | decimal | 总金额 | |
can_use_money | decimal | 可用余额 | |
freezing_balance | decimal | 冻结金额 | |
my_profit | decimal | 我的利润 | |
my_bonus | decimal | 我的奖金 | |
is_proceeds | bool | true:开启的是货款支付 |