Skip to main content
POST
/
inr
/
collect
/
query
INR Collection Query
curl --request POST \
  --url https://uat-interface.haipay.asia/inr/collect/query \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": 123,
  "orderId": "<string>",
  "sign": "<string>",
  "orderNo": "<string>"
}
'
{
  "status": "",
  "error": "",
  "msg": "",
  "data": {}
}

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer
required

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

orderId
string
required

Merchant order number (must be unique, max length 48)

sign
string
required

Signature

orderNo
string

Platform order number (faster response)

Response

200 - application/json
status
string
default:""

1: Normal, 0: Exception

error
string
default:""

Error code

msg
string
default:""

Error description

data
object
Last modified on April 10, 2026