# 查询商户余额
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/shop/funds/getbalance?access_token=xxxxxxxxx
# 请求参数示例
{
}
# 回包示例
{
"balance_info":{
"available_amount":45331,
"pending_amount":7549
}
}
# 回包参数说明
| 参数 | 类型 | 说明 |
|---|---|---|
| errcode | number | 错误码 |
| errmsg | string | 错误信息 |
| balance_info | Object BalanceInfo | 余额信息 |
# Object BalanceInfo
| 参数 | 类型 | 说明 |
|---|---|---|
| available_amount | number | 可提现余额 |
| pending_amount | number | 待结算余额 |
# 返回码
| 返回码 | 错误类型 |
|---|---|
| -1 | 系统异常 |