worldline Direct
Sign up

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.

Overview

Payment group:
Payment product id:
5405
Key benefits
  • Very popular with users in Asia
  • Guaranteed payment
  • Allows refunds
  • Easy integration

Countries & currencies

Supported countries

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
     currencyCode

amount: The gross amount you want to charge for this order.
currencyCode: The ISO 4217 currency code for this amount.

hostedCheckoutSpecificInput
     returnURL
     locale

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
     currencyCode

amount: The gross amount you want to charge for this order.
currencyCode: The ISO 4217 currency code for this amount.

redirectPaymentMethodSpecificInput
     paymentProductId
     requiresApproval
     redirectionData.returnUrl

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

  1. Your customers finalise an order in your shop and select Alipay.
  2. 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.
  3. 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.
  4. The mobile/tablet device opens the customers' preferred/supported Alipay app. Your customers confirm the payment in the app.
  5. We receive the transaction result.
  6. 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.
  7. You request the transaction result from our platform via GetPayment or receive the result via webhooks.
  8. If the transaction was successful, you can deliver the goods/services.

With a mobile device

  1. Your customers finalise an order in your shop and select Alipay.
  2. 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.
  3. 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.
  4. We receive the transaction result.
  5. The mobile/tablet device displays the transaction result in the customers' preferred/supported app.
  6. You request the transaction result from our platform via GetPayment or receive the result via webhooks.
  7. 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.

Was this page helpful?

Do you have any comments?

Thank you for your response.