Skip to main content
POST
/
usd
/
pay
/
query
USD Disbursement Query
curl --request POST \
  --url https://uat-interface.haipay.asia/usd/pay/query \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": 123,
  "orderId": "<string>",
  "orderNo": "<string>",
  "sign": "<string>"
}
'
{
  "status": "<string>",
  "error": "<string>",
  "msg": "<string>",
  "data": {
    "orderId": "<string>",
    "orderNo": "<string>",
    "amount": "<string>",
    "fee": "<string>",
    "status": 123,
    "payTime": "<string>",
    "errorMsg": "<string>",
    "sign": "<string>"
  }
}

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer

Business ID (obtained from the backend; must match the currency in the URL).

orderId
string

Merchant order number.

orderNo
string

Platform order number (faster response).

sign
string

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 16, 2026