# Check merchant balance

# Dxplaination of Interface Call Request

Interface Force Check Source IP

http请求方式:POST
https://api.weixin.qq.com/shop/funds/getbalance?access_token=xxxxxxxxx

# Example of request parameters

{
    "biz_type":1,
    "mchid":"1234567890"
}

# Examples of back-up

{
    "balance_info":{
        "available_amount":45331,
        "pending_amount":7549
    }
}

# Dxplaination of request parameters

parameter type Is it compulsory? Introductions
biz_type number yes Type of business, fill in 1
mchid string yes Merchant Number

# Dxplaination of callback parameters

parameter type Introductions
errcode number Error code
errmsg string Error message
balance_info Object BalanceInfo Balance information

# Object BalanceInfo

parameter type Introductions
available_amount number Refundable balance
pending_amount number Balances to be settled

# Return code

Return code Error Type
-1 System exceptions