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
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
Pay with QR Code (Desktop Website Browser) - WeChat PayMobile App - WeChat Pay
WeChat Official Account - WeChat PayWeChat Mini Program - WeChat PayMobile Browser (H5) - WeChat PayCustoms Declaration - WeChat PayFunds Split - WeChat Pay
NORTH AMERICA & LATAM

Mobile App - WeChat Pay

To enable App WeChat payment, additional offline review process is required, please contact your account manager for detailed information.

Accept WeChat Pay on your mobile app on your shopper’s Android or iOS phone. You will need to integrate with the WeChat Pay mobile SDK.

Wechat - mobile app

Step 1. Initialize a Payment Intent

Create a Payment Intent with the Create a Payment Intent API API.

POST /api/v1/pa/payment_intents/create

JSON

Step 2. Obtain the data to be passed to the WeChat Pay SDK

When a shopper selects to pay with WeChat Pay, call the Confirm a Payment Intent API API to get the data which will be passed to WeChat Pay SDK to invoke the WeChat Pay app.

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

JSON

You will get a response similar to the following.

JSON

Step 3. Redirect the shopper to WeChat Pay to complete the payment

Pass what you get in the previous step to the WeChat Pay mobile SDK by following the WeChat Pay official integration guide . After the shopper completes the payment, WeChat will redirect the shopper to your app and do a callback.

Step 4. 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. You may start polling the Payment Intent status after the shopper is redirected back to your mobile app, i.e., the return_url passed when creating the Payment Intent.

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

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.