Create Refund

  • 申请退款接⼝

Request

  • Path: api/gobo/refund/create
  • Method: POST
  • Header:
    • Authorization: Basic c2FiZXI6c2FiZXJfc2VjcmV0
    • Blade-Auth: access_token
  • Request body example:
1
2
3
4
5
6
{
"orderNo":"商户订单号,如PO123456789",
"refundAmount":"退款金额,货币是韩元,如500",
"refundReason":"退款原因",
"notifyUrl": "商户通知url,存在时退款成功或失败会通知商户"
}

Response

  • Response body example:
1
2
3
4
5
6
{
"code": 200,
"success": true,
"data": "PO123456789", //商户订单号
"msg": "操作成功"
}