Search...
Log inGet started
Airwallex logo
Home
Core API
Payments
Transactional FX
Payouts
Issuing
Back to home
OverviewChoose your payments solutionGet started with payments
Online payments
Invoice integrations
Payment methods
Payment Methods OverviewGlobal
EU & UK
APAC
7-Eleven
Alipay CN
Alipay HK
Pay with QR Code (Desktop Website Browser) - Alipay HK
Mobile App - Alipay HKMobile Website Browser - Alipay HK
Atome
Boost
DANA
DOKU Wallet
Dragonpay
DuitNow
E.SUN (Taiwan ATM & Internet banking)
FPS
GCash
GoPay
GrabPay - Malaysia
GrabPay - Singapore
Indonesian Bank Transfer
Indonesian Convenience Stores - BETA
Jenius Pay
Kakao Pay
Kiosk Payments
Konbini
LinkAja
OVO
Pay-easy
PayNow
Philippines Online Banking
PromptPay
Rabbit LINE Pay
ShopeePay
Taiwan Convenience Stores
Tesco Lotus
Thailand Online Banking
Touch 'n Go
TrueMoney
WeChat Pay
NORTH AMERICA & LATAM

Pay with QR Code (Desktop Website Browser) - Alipay HK

Accept Alipay payments on your website by presenting a QR code to the shopper. A payment URL is also provided to you as a fallback in case the QR code cannot be displayed.

Step 1. Initialize a Payment Intent

Create a PaymentIntent object with a request_id, amount, currency and a merchant_order_id from your backend server.

Shell

Step 2. Generate and render the QR code to the shopper

2.1 Obtain the string representation of the QR code and the fallback URL

When a shopper selects to pay with Alipay HK on their desktop browser, call the Confirm a Payment Intent API API to get:

  • a string representation of the QR code.
  • a fallback URL pointing to the Alipay HK page.

POST /api/v1/pa/payment_intents/{id}/confirm

JSON

You will get a response similar to the following.

JSON

2.2. Present the QR code to the shopper or redirect the shopper to the Alipay HK page

You can render the QR code image with the next_action.qrcode returned in the confirm Payment Intent response and present it to the shopper. Shoppers will complete payment after scanning the QR code with their Alipay HK mobile app.

There are publicly available libraries for different programming languages to render a QR code image from its string representation. For example, if you use JavaScript, you may use qrcode to facilitate the conversion. Firstly, get a Base64-encoded image string with the qrcode library:

JavaScript

Then place the image string into the src field of the img element.

HTML

In case the QR code cannot be displayed, you should redirect the shopper to the Alipay HK page with the next_action.url returned in the confirm Payment Intent response. Shoppers will be able to continue the payment by scanning the QR code rendered by Alipay HK on that page.

Once generated, the QR code and the URL will expire in 10 minutes. Confirming the Payment Intent again (with Alipay HK or any other payment methods) will void both the QR code and the URL.

Step 3. Query the payment result status

To get the payment result, we suggest you poll the status of the Payment Intent via the Retrieve a Payment Intent API API.

GET /api/v1/pa/payment_intents/{id}

  • If you directly rendered and presented the QR code to the shopper, you should start polling the status immediately.
  • If you redirected the shopper to the Alipay HK page, you may start polling the Payment Intent status after the shopper is redirected back to your website (i.e. the return_url passed when creating the Payment Intent)

In addition, Airwallex will notify you of the payment result asynchronously via the webhooks. Please refer to the webhook documentation to set up your webhook accordingly. Although subscribing to webhook events is optional, it is recommended to subscribe to the payment_intent.succeeded webhook which indicates that the shopper has paid the order.