跳转到主要内容
POST
/
hkd
/
collect
/
query
HKD Collection Query
curl --request POST \
  --url https://uat-interface.haipay.asia/hkd/collect/query \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": 123,
  "orderId": "<string>",
  "sign": "<string>",
  "orderNo": "<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>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://doc.haipay.net/llms.txt

Use this file to discover all available pages before exploring further.

密钥私钥(生成签名)

相关主题

请求体

application/json
appId
integer
必填

Business ID (retrieved from the backend, must correspond to the currency in the URL)

orderId
string
必填

Merchant order number

sign
string
必填

Signature

orderNo
string

Platform order number (faster response)

响应

200 - application/json
status
string

1: Normal, 0: Exception

error
string

Error code

msg
string

Error description

data
object
Last modified on May 29, 2026