接口文档SDK业务专题开发者工具

获取微信资金账户信息
全部接口
V1.1
loading

所属权限
请求地址 wechat_funds/get
请求方法 get

全局参数

全局参数是指每一个接口都需要使用到的参数。详情参考,代码案例参考

参数名称 参数类型
access_token 授权令牌,完成 OAuth 2.0 授权后获得,参考授权认证章节
timestamp

当前的时间戳,单位为秒,允许客户端请求最大时间误差为 300 秒。

MarketingAPI 所使用的时间戳,若无特殊说明,均为秒级时间戳

MarketingAPI 所使用的时区为 GMT+8,例如当时间戳为 1494840119 时,表示 2017-05-15 17:21:59

nonce 随机字串标识,不超过 32 个字符,由调用方自行生成,需保证全局唯一性
fields get 接口增加 fields 字段,用于指定返回参数的字段列表,为选填字段。fields 取值范围为 get 接口返回的 list 中的字段。如不填写,则根据默认值进行返回

请求参数

标有*的参数为必填项

名称 类型 描述
account_id*
integer 广告主 id,有操作权限的广告主 id

请求示例


curl -G 'https://api.e.qq.com/v1.1/wechat_funds/get?access_token=<ACCESS_TOKEN>&timestamp=<TIMESTAMP>&nonce=<NONCE>' \
-d 'account_id=<ACCOUNT_ID>' 
					

应答字段

名称 类型 描述
list
struct[] 返回信息列表
fund_type
enum 资金类型,[枚举详情]
balance
integer 余额,单位为分
credit_roll_spec
struct 固定信用金更多信息
limit_amount
integer 最大余额,单位为分
used_amount
integer 已消耗额度,单位为分
usable_amout
integer 可分配额度,单位为分
miniprogram_spec
struct 小程序启动金更多信息
received_amount
integer 已领取金额,单位为分
used_amount
integer 已消耗额度,单位为分
locked_amount
integer 锁定金额,单位为分
repaid_amount
integer 已偿还金额,单位为分
need_repay_amount
integer 待偿还金额,单位为分
memo
struct 更多信息
wechat_fund_spec
struct 微信账户更多信息
usable_amount
integer 可分配额度,单位为分
locked_amount
integer 锁定金额,单位为分
local_wechat_fund_spec
struct 附近推微信账户更多信息
cash_usable_amount
integer 现金可分配额度,单位为分
gift_usable_amount
integer 赠送金可分配额度,单位为分
cash_locked_amount
integer 现金锁定金额,单位为分
gift_locked_amount
integer 赠送金锁定金额,单位为分

应答示例

{
    "code": 0,
    "message": "",
    "message_cn": "",
    "data": {
        "list": [
            {
                "fund_type": "CASH",
                "balance": 5555,
                "credit_roll_spec": {
                    "limit_amount": 1000230,
                    "used_amount": 230,
                    "usable_amout": 1000000
                },
                "miniprogram_spec": {
                    "received_amount": 50000,
                    "used_amount": 20000,
                    "locked_amount": 10000,
                    "repaid_amount": 20000,
                    "need_repay_amount": 30000
                }
            }
        ],
        "memo": {
            "wechat_fund_spec": [],
            "local_wechat_fund_spec": []
        }
    }
}

可视化调试工具