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

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer
required

Business ID (obtained from the backend, must pass the corresponding business ID according to the currency in URL)

orderId
string
required

Merchant Order Number

sign
string
required

Signature

orderNo
string

Platform Order Number (faster response)

Response

200 - application/json
status
string
default:1

1: Normal, 0: Exception

error
string
default:00000000

Error code

msg
string
default:""

Error description

data
object
Last modified on April 10, 2026