Skip to content

支付中心

这套接口主要实现了支付相关的操作,包括下单、退款、取消订单、发送红包等操作,同时还具备了定时轮询支付结果和红包发送结果的功能。

Maven坐标

xml
<dependency>
    <groupId>com.ikingtech.platform</groupId>
    <artifactId>sdk-pay-api</artifactId>
</dependency>

主要方法说明

接口名功能返回值api接口路径
order创建一个新的支付订单,返回支付订单的详细信息R<PayOrderDTO>/order
refund对已经成功的订单进行退款操作。R<Object>/refund
cancel取消一个正在支付或已支付成功的订单。R<Object>/order/cancel
getPayResultByRequestId根据请求ID查询支付结果R<PayRecordDTO>/result/request-id
listPayResultByRequestIds根据一组请求ID批量查询支付结果R<List<PayRecordDTO>>/result/list/request-ids