WeChat Official Account
Accept WeChat Pay on your WeChat Official Account page.
Note: You need to redirect the shopper to the URL provided by Airwallex from the Wechat in-app browser.
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.
Step 2. Accepting payments
When a customer selects WeChat Pay in WeChat browser, you may call the following API endpoints to get the redirect URL from the response.
- Get the redirect url
Request:
Response: Upon confirmation, you will get next_action
in response.
- Handle the redirect
You will need to redirect the customer to the URL provided in the response. The shopper then enters his/her WeChat Pay PIN to confirm the payment. Once the payment is fulfilled, the shopper will be redirected to the return_url
provided from your confirm request.
- 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 customer 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.