商家充值退款余额查询 
商户可通过调用此接口查询自身的充值退款外币账户实时余额和对应外币币种。
| 请求参数 | 类型 | 描述 | 
|---|---|---|
| base_uri | string | 声明接入点 https://apihk.mch.weixin.qq.com/(香港接入) | 
php
$instance->v3->global->refund->rechargeBalance->getAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance->chain('v3/global/refund/recharge-balance')->getAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$instance['v3/global/refund/recharge-balance']->getAsync([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
])
->then(static function(\Psr\Http\Message\ResponseInterface $response) {
  print_r(json_decode((string) $response->getBody(), true));
})
->wait();php
$response = $instance->v3->global->refund->rechargeBalance->get([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance->chain('v3/global/refund/recharge-balance')->get([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
]);
print_r(json_decode((string) $response->getBody(), true));php
$response = $instance['v3/global/refund/recharge-balance']->get([
  'base_uri' => 'https://apihk.mch.weixin.qq.com/', // 接入点(香港接入)
]);
print_r(json_decode((string) $response->getBody(), true));| 返回字典 | 类型 | 描述 | 
|---|---|---|
| remaining_amount | integer | 账户可用余额 | 
| currency | string | 货币类型 | 
参阅 官方文档