[更新]增加企业付款到零钱

This commit is contained in:
Anyon 2018-03-02 10:21:34 +08:00
parent 0bbdf10393
commit abbf55983d

View File

@ -187,6 +187,30 @@ class Pay
return $this->callPostApi($url, $options, true);
}
/**
* 企业付款到零钱
* @param array $options
* @return array
* @throws InvalidResponseException
*/
public function createTransfers(array $options)
{
$url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers';
return $this->callPostApi($url, $options, true);
}
/**
* 查询企业付款到零钱
* @param string $partner_trade_no 商户调用企业付款API时使用的商户订单号
* @return array
* @throws InvalidResponseException
*/
public function queryTransfers($partner_trade_no)
{
$url = 'https://api.mch.weixin.qq.com/mmpaymkttransfers/gettransferinfo';
return $this->callPostApi($url, ['partner_trade_no' => $partner_trade_no], true);
}
/**
* 获取微信支付通知
* @return array