Skip to main content
POST
/
usd
/
refund
/
apply
Credit Card Refund Application
curl --request POST \
  --url https://uat-interface.haipay.asia/usd/refund/apply \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": 123,
  "orderId": "<string>",
  "orderNo": "<string>",
  "sign": "<string>"
}
'
{
  "status": "<string>",
  "error": "<string>",
  "msg": "<string>",
  "data": {
    "appId": "<string>",
    "orderNo": "<string>",
    "orderId": "<string>",
    "refundNo": "<string>",
    "status": "<string>",
    "errorMsg": "<string>",
    "sign": "<string>"
  }
}

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer
required

Business ID (obtained from backend, must pass corresponding business ID based on currency in URL)

orderId
string
required

Merchant refund application order number

orderNo
string
required

Platform order number (original collection platform order number returned)

sign
string
required

Signature

Response

200 - application/json
status
string

1: Normal, 0: Exception

error
string

Error code

msg
string

Error description

data
object

返回数据

Last modified on April 10, 2026