Alipay+
Intro
Alipay+ is a suite of global digital wallets for online and in-store payments with over 1 billion users. Among the supported wallets are:
Alipay
Alipay HK (Hong Kong SAR China)
Kakao Pay (South Korea)
Touch ‘n Go eWallet (Malaysia)
TrueMoney (Thailand)
GCash (The Philippines)
As a cross-border payment method, your customers pay in the currency of their preferred wallet, but you will receive the settlement in your currency.
The integration is very easy and enables your customers to pay swiftly: You send a standard request to our platform to redirect your customers to the Alipay + portal. They select their preferred wallet to confirm the payment with their mobile app.
Countries & currencies
Supported countries
- Australia
- Austria
- Belgium
- Bulgaria
- Croatia
- Cyprus
- Czech Republic
- Denmark
- Estonia
- Finland
- France
- Germany
Supported currencies
- Australian dollar (AUD)
- Danish krone (DKK)
- Euro (EUR)
- Norwegian krone (NOK)
- Pound sterling (GBP)
- Swedish krona/kronor (SEK)
- Swiss franc (CHF)
Integration
We offer this payment methods for the following integration modes. Learn in our dedicated guides about the individual differences
Find a high level overview in the "Process flows" chapter.
Depending on the integration mode, differences apply:
Hosted Checkout Page
Add the following properties to a standard CreateHostedCheckout request:
{
"order": {
"amountOfMoney": {
"currencyCode": "EUR",
"amount": 980
}
},
"hostedCheckoutSpecificInput": {
"locale": "en_GB",
"returnUrl": "https://yourReturnUrl.com"
},
"redirectPaymentMethodSpecificInput": {
"PaymentProductId": 5405
}
}
Properties | Remarks |
---|---|
order.amountOfMoney |
amount: The gross amount you want to charge for this order. |
hostedCheckoutSpecificInput |
returnURL: The URL we redirect your customers to after the payment has been finalized. locale: The language version of our Hosted Checkout Page. |
redirectPaymentMethodSpecificInput.paymentProductId |
The numeric identifier of the payment method on our platform. Find this id in the "Overview" chapter. It instructs our platform to send your customers directly to the Alipay portal. If left out, our platform sends your customers to the Hosted Checkout Page instead, allowing them to choose this or any other payment method in your account. |
Find detailed information about this object and its properties in our CreateHostedCheckoutAPI.
Server-to-server
Add the following properties to a standard CreatePayment request:
{
"order":{
"amountOfMoney":{
"currencyCode":"EUR",
"amount":980
}
},
"redirectPaymentMethodSpecificInput":{
"PaymentProductId":5405,
"RequiresApproval":false,
"redirectionData":{
"returnUrl":"https://yourReturnUrl.com"
}
}
}
Properties | Remarks |
---|---|
order.amountOfMoney |
amount: The gross amount you want to charge for this order. |
redirectPaymentMethodSpecificInput |
paymentProductId: The numeric identifier of the payment method on our platform. Find this id in the "Overview" chapter. requiresApproval: Set to "false" as this payment method allows only direct sale operations. returnUrl: The URL we redirect your customers to after the payment has been finalised. |
Find detailed information about this object and its properties in our CreatePaymentAPI.
Process flows
Depending on your customers' device(s) used, differences apply:
With a desktop and a mobile device
- Your customers finalise an order in your shop and select Alipay.
- You send this CreateHostedCheckout/CreatePayment request to our platform. Depending on your integration mode, differences apply. Check out the "Integration" tab to find examples for each mode.
- You redirect your customers via the redirectUrl (For CreateHostedCheckout requests) or MerchantAction.RedirectData.RedirectURL (For CreatePayment requests) to the Alipay portal. Your customers choose their wallet and scan the QR code with their mobile/tablet device.
- The mobile/tablet device opens the customers' preferred/supported Alipay app. Your customers confirm the payment in the app.
- We receive the transaction result.
- The mobile/tablet device displays the transaction result in the customers' preferred/supported app. We redirect your customers to your returnURL on their desktop device.
- You request the transaction result from our platform via GetPaymentDetails/GetHostedCheckout or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods/services.
With a mobile device
- Your customers finalise an order in your shop and select Alipay.
- You send this CreateHostedCheckout/CreatePayment request to our platform. Depending on your integration mode, differences apply. Check out the "Integration" tab to find examples for each mode.
- You redirect your customers via the redirectUrl. The mobile/tablet device opens the Alipay app. Your customers choose their wallet and confirm the payment in the app.
- We receive the transaction result.
- The mobile/tablet device displays the transaction result in the customers' preferred/supported app.
- You request the transaction result from our platform via GetPaymentDetails/GetHostedCheckout or receive the result via webhooks.
- If the transaction was successful, you can deliver the goods/services.
Testing
Refer to our Test cases for test data and detailed instructions.
Make sure to use the right endpoint and switch back to the live URL as soon as you have finished your tests.