退款申请接口
Endpoint
POST {BASE_URL}/api/v2.0/payments/refund
退款申请接口,根据平台订单金额进行退款申请。一笔支付订单可以分多次退款,退款总金额不得超过实际支付金额,退款币种与支付订单币种需一致。
退款申请Request Body
{ "paymentId": "string", "refundRequestId": "string", "refund": { "refundAmount": { "value": "string" }, "description": "string", "notifyUrl": "string" } }
退款申请Response
{ "refundId": "string", "paymentId": "string", "refundRequestId": "string", "refund": { "refundAmount": { "value": "string" }, "description": "string", "notifyUrl": "string" }, "refundTime": "2019-08-24T14:15:22Z", "result": { "resultCode": "string", "resultMessage": "string", "resultStatus": "S" } }