Skip to main content
POST
/
global
/
cashier
/
collect
/
query
/
v2
Cashier Collection Query
curl --request POST \
  --url https://uat-interface.haipay.asia/global/cashier/collect/query/v2 \
  --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>",
    "currency": "<string>",
    "amount": "<string>",
    "actualAmount": "<string>",
    "fee": "<string>",
    "status": 123,
    "payTime": "<string>",
    "errorMsg": "<string>",
    "originalCurrency": "<string>",
    "floatExchangeRate": "<string>",
    "originalAmount": "<string>",
    "sign": "<string>"
  }
}

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer
required

Business ID (retrieved from the backend; must use the Cashier-specific APPID, currency is CASHIER)

orderId
string
required

Merchant order ID

orderNo
string
required

Platform order ID

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