Skip to main content
POST
/
common
/
voucher
Payout Voucher
curl --request POST \
  --url https://uat-interface.haipay.asia/common/voucher \
  --header 'Content-Type: application/json' \
  --data '
{
  "appId": 123,
  "orderNo": "<string>",
  "sign": "<string>"
}
'
{
  "status": "<string>",
  "error": "<string>",
  "msg": "<string>",
  "data": "<string>"
}

Secret Key & Private Key (Generate Signature)

Body

application/json
appId
integer<int64>
required

Business ID (obtained from the backend)

orderNo
string
required

Platform order ID

sign
string
required

Signature

Response

200 - application/json
status
string

Status code

error
string

Error code

msg
string

Message

data
string

Base64 encoded voucher image

Last modified on June 24, 2026