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