Alipay (out)
Transfer via Alipay (mobile number and email address).
Country | China |
---|---|
Currency | CNY (Chinese Yuan) |
Method type | alipay |
Direction | Payout |
Integration type | H2H |
Transfer type | Transfer via Alipay |
Account number format | 13-digit mobile number and its associated email address? |
Limits | 30 - 10 800 CNY |
Create Payout (API request)
Integration type: H2H
HTTP Method: POST
Endpoint: /deals/payout
{
"amount": 1000, // Payout amount
"currencyTo": "CNY", // Currency
"invoiceId": "invoiceID", // Unique invoice identifier on the merchant side
"clientId": "clientID", // Unique client identifier on the merchant side
"type": "alipay", // Method type
"baseCurrency": "fiat", // Base currency type (fiat, crypto)
"feesStrategy": "add", // Fees handling strategy (add, sub)
"recipient": { // Recipient information
"account_number": "8601234567890", // Mobile number linked to recipient's account
"account_email": "[email protected]", // Email address associated with recipient's account?
"account_owner": "Account Holder", // Recipient's full name (account holder)
"type": "phone" // Recipient account type ?
}
}
Updated 24 days ago