curl --request POST \
--url https://uat-interface.haipay.asia/inr/pay/apply \
--header 'Content-Type: application/json' \
--data '
{
"appId": 123,
"orderId": "<string>",
"amount": "<string>",
"accountType": "BANK_ACCOUNT",
"bankCode": "<string>",
"accountNo": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"partnerUserId": "<string>",
"sign": "<string>",
"notifyUrl": "<string>",
"subject": "<string>",
"body": "<string>"
}
'{
"status": "<string>",
"error": "<string>",
"msg": "<string>",
"data": {
"orderId": "<string>",
"orderNo": "<string>",
"sign": "<string>"
}
}Business ID (retrieved from backend, must correspond to the currency in URL)
Merchant order number (must be unique, max length 48)
48Transaction amount (unit: INR, decimals not supported)
^[1-9]\d*$Account type: BANK_ACCOUNT (Bank)
BANK_ACCOUNT Bank code (if accountType = BANK_ACCOUNT, fill in IFSC)
User bank account number
Name (name can only contain letters, no numbers or special characters)
^[A-Za-z\s]+$Telephone number (mobile numbers consisting of 10 digits beginning with 6-9)
^[6-9]\d{9}$Email address (ending in @gmail.com; a name + number combination is recommended as the email prefix)
^[A-Za-z0-9._%+-]+@gmail\.com$Unique user identifier (e.g. userId). Used for risk control, must be valid, otherwise it will affect the transaction. Allowed characters: numbers, letters, or common symbols -~!@#$%&*()_.
^[A-Za-z0-9\-~!@#$%&*()_]+$Signature
Callback URL
Payment note (transaction title, product name, payment reason, etc.)
Additional remark details
curl --request POST \
--url https://uat-interface.haipay.asia/inr/pay/apply \
--header 'Content-Type: application/json' \
--data '
{
"appId": 123,
"orderId": "<string>",
"amount": "<string>",
"accountType": "BANK_ACCOUNT",
"bankCode": "<string>",
"accountNo": "<string>",
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"partnerUserId": "<string>",
"sign": "<string>",
"notifyUrl": "<string>",
"subject": "<string>",
"body": "<string>"
}
'{
"status": "<string>",
"error": "<string>",
"msg": "<string>",
"data": {
"orderId": "<string>",
"orderNo": "<string>",
"sign": "<string>"
}
}