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
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
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
Website QRWeChat Pay ElementMobile App Mobile Browser (H5)WeChat Official AccountWeChat Mini Program
Customs Declaration WeChat Pay funds split
US & LATAM

WeChat Mini Program

Accept WeChat Pay from your WeChat mini program, where you control and build the integration by yourself using WeChat Mini Program Payment API. Wechat - mini program

Step 1. Initialize a payment Intent

After the customer adds items into their cart and checkout, you should create a payment intent on your server-side. You will need to pass the id and client_secret in response to a mini-program for the customer to complete the payment.

Shell

Step 2. Accepting payments

When a customer selects Pay in WeChat mini program, you may call the following API endpoints to get the data which you need to call WeChat Mini program API (WeChat Mini program API from the response.

  • Obtain required mini program payment data to process payment
Shell

Before confirming to pay with WeChat Pay in Mini Program, you need the open_id of the customer.

To get an open ID, follow below instructions:

  1. Invoke wx.login and then get a code from the response.
  2. Invoke jscode2session from server-side to get an open ID

After confirming, you will get next_action in response.

Shell
  • Pass the data to WeChat Mini Program Payment API

Pass data in next_action you get in the previous step to WeChat Mini Program Payment API wx.requestPayment . After the customer completes payment, WeChat will redirect the customer to your mini program and do a callback.

  • Wait for notification

Airwallex will notify you of the payment result asynchronously via webhook. Please refer to webhook documentation to configure your webhook accordingly. Although subscribing to different events is optional, it is recommended to subscribe to the ‘payment_intent.succeeded’ which indicates that the shopper has successfully paid for an order via WeChat Pay.

  • Query the PaymentIntent status (Optional)

You may also query the status of a payment anytime via the PaymentIntents API.

Shell