@liuhlightning/wx-pay
Version:
communicate to wx pay
15 lines • 389 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.queryRefund = queryRefund;
/**
* 查询单笔退款
*
* https://pay.weixin.qq.com/wiki/doc/apiv3/apis/chapter3_1_10.shtml
*/
function queryRefund(id) {
return this.request({
url: `/v3/refund/domestic/refunds/${id}`,
method: "GET",
});
}
//# sourceMappingURL=queryRefund.js.map