curl --request POST \
--url https://uat-interface.haipay.asia/usdt/pay/apply \
--header 'Content-Type: application/json' \
--data '
{
"appId": 123,
"orderId": "<string>",
"amount": "<string>",
"accountType": "<string>",
"bankCode": "<string>",
"accountNo": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"partnerUserId": "<string>",
"sign": "<string>",
"subject": "<string>",
"body": "<string>",
"notifyUrl": "<string>"
}
'{
"status": "<string>",
"error": "<string>",
"msg": "<string>",
"data": {
"orderId": "<string>",
"orderNo": "<string>",
"sign": "<string>"
}
}Business ID (obtained in the backend; must correspond to the currency in the URL)
Merchant order number
48Transaction amount (unit: USDT, accurate to two decimal places; prohibited to add punctuation marks such as ",") Range: 0.0001-5000000
Address
Payee name (Payee name format: English letters with spaces allowed, 1-30 chars, "firstName middleName lastName" (middleName optional, special characters support '.-))
1 - 30^[A-Za-z\s'.-]+$Real mobile number
Real email address
Unique user identifier (e.g., userId), used for risk control system, must be valid, otherwise it will affect the transaction. Format: digits, letters, or symbols -~!@#$%&*()_.
^[A-Za-z0-9\-~!@#$%&*()_]+$Signature
Payment note (title, product name, reason)
Note details
webhook URL
curl --request POST \
--url https://uat-interface.haipay.asia/usdt/pay/apply \
--header 'Content-Type: application/json' \
--data '
{
"appId": 123,
"orderId": "<string>",
"amount": "<string>",
"accountType": "<string>",
"bankCode": "<string>",
"accountNo": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "jsmith@example.com",
"partnerUserId": "<string>",
"sign": "<string>",
"subject": "<string>",
"body": "<string>",
"notifyUrl": "<string>"
}
'{
"status": "<string>",
"error": "<string>",
"msg": "<string>",
"data": {
"orderId": "<string>",
"orderNo": "<string>",
"sign": "<string>"
}
}