The Airwallex iOS SDK is a flexible tool that enables you to integrate payment methods into your iOS app. It provides native UI screens to facilitate payment functions on top of your existing purchase flow. You can also choose to build your own custom UI using API integration.
We support the following localizations: English, Chinese Simplified, Chinese Traditional, French, German, Japanese, Korean, Portuguese Portugal, Portuguese Brazil, Russian, Spanish, Thai
| Category | Methods | Notes |
|---|---|---|
| Cards | Visa, Mastercard, UnionPay, Discover, JCB, Diners Club, Amex | PCI-DSS compliance is required when using Low-level API Integration |
| Apple Pay | Apple Pay | Setup |
| E-Wallets | Alipay, AlipayHK, DANA, GCash, Kakao Pay, Touch 'n Go, WeChat Pay, and more |
Choose the integration option that best suits your needs:
| Option | Description | Multiple payment methods | Single payment method |
|---|---|---|---|
| UI Integration - Hosted Payment Page (HPP) | Launch a complete, SDK-managed payment flow with prebuilt screens for payment method selection, card input, and checkout. Supports customizable theming and dark mode. Recommended for most use cases. | ![]() |
![]() |
| UI Integration - Embedded Element | Embed Airwallex's AWXPaymentElement directly into your own view hierarchy using UIKit. You retain full control over the host layout and navigation while leveraging the SDK's payment UI components. |
![]() |
![]() |
| Low-level API Integration | Build a fully custom payment UI using the SDK's core APIs. Gives you direct access to payment method retrieval, card tokenization, payment confirmation, and consent management. | ![]() |
![]() |
- Airwallex iOS SDK
- Table of contents
Follow our integration guide and explore the example project to quickly set up payments using the Airwallex SDK.
Tip
Updating to a newer version of the SDK? See our migration guide
- iOS 13.0+
- Xcode 15.4+ (For older Xcode versions, refer to release 5.4.3)
The Examples can be run on the latest Xcode. To run the example app, you should follow these steps.
- Clone source code
git clone git@github.com:airwallex/airwallex-payment-ios.git
- Install dependencies and open project
Make sure you have installed Cocoapods and then run the following command in the project directory:
pod install
Tip
Update key file (Optional)
- In the
Examples/Keysfolder, editKeys.jsonwith proper keys. - Build and run
Examplesschema
The key file provides default values for settings. You can update these settings anytime using the in-app settings screen.
Airwallex for iOS is available via Swift Package Manager. To integrate it into your project, follow these steps:
-
Follow Apple's guide on how to add a package dependency in Xcode.
-
Use the following URL for the Airwallex package: https://github.com/airwallex/airwallex-payment-ios
-
Ensure you specify version 6.1.1 or later.
You can add Airwallex for a comprehensive integration that includes everything except WeChat Pay. Alternatively, you can selectively add specific products to your project for a more modular setup, depending on your payment needs:
AirwallexPaymentSheet: For UI integration.AirwallexPayment: For low-level API integration.AirwallexWeChatPay: Required for WeChat Pay integration.
Size Impact
| Integration Style | Components Included | IPA Size Increase |
|---|---|---|
| Low-Level API Integration | AirwallexCore AirwallexPayment |
0.4 MB |
| UI Integration | AirwallexCore AirwallexPayment AirwallexPaymentSheet |
1.3 MB |
| Full Integration | AirwallexCore AirwallexPayment AirwallexPaymentSheet AirwallexWeChatPay |
1.5 MB |
The above size increase (compressed) was calculated based on Xcode’s App Thinning Size Report for a minimal iOS project integrating AirwallexSDK via Swift Package Manager (SPM).
Airwallex for iOS is available via CocoaPods.
You can add Airwallex for a comprehensive integration that includes everything except WeChat Pay:
pod 'Airwallex', '~> 6.5.0'Alternatively, you can selectively add specific products to your project for a more modular setup, depending on your payment needs:
pod 'Airwallex/AirwallexPaymentSheet' # For UI integration.
pod 'Airwallex/AirwallexPayment' # For low-level API integration
pod 'Airwallex/AirwallexWeChatPay' # Required for WeChat Pay integrationRun the following command:
pod installWhen your app starts, configure the SDK with mode.
Airwallex.setMode(.demoMode) // .demoMode, .previewMode, .stagingMode, .productionModeGenerate or retrieve a customer ID for your user on your server-side. Refer to the Airwallex API Doc for more details
Note
If you only support guest checkout, you can skip this step
The Payment Intent is a required object for all transaction modes in the Airwallex iOS SDK. It represents a specific payment attempt and must be created before initiating a payment from the mobile app. Create payment intent on your server-side and then pass the payment intent to the mobile-side to confirm the payment intent with the payment method selected.
Please refer to the Airwallex API Doc for details of the payment intent API.
While creating payment intent using payment_intents/create:
- If amount = 0, only a payment consent will be created (no funds will be deducted).
- If amount > 0, a payment consent will be created and a deduction will be made at the same time.
- For guest checkout,
customer_idparameter can be omitted.
If you are using Session object, you don't need to manually update client secret, it will be automatically handled by the SDK internally
Note
If you are using deprecated subclasses of AWXSession, please refer to integration guide 6.1.9
The new Session type introduced in version 6.2.0 provides a unified and simplified way for integration and there are some internal optimization as well. We recommend using Session instead of the legacy AWXOneOffSession, AWXRecurringSession, and AWXRecurringWithIntentSession.
Option 1: Initialize with a pre-created payment intent
let paymentConsentOptions = if /* one-off transaction */ {
nil
} else {
/* recurring transaction */
PaymentConsentOptions(
nextTriggeredBy: ".customer/.merchant",
merchantTriggerReason: "nil/.scheduled/.unscheduled/...."
)
}
let session = Session(
paymentIntent: paymentIntent, // payment intent created on your server
countryCode: "Your country code",readme
applePayOptions: applePayOptions, // required if you want to support apple pay
autoCapture: true, // Only applicable for card payment. If true the payment will be captured immediately after authorization succeeds.
billing: billing, // prefilled billing address
paymentConsentOptions: paymentConsentOptions, // info for recurring transactions
requiredBillingContactFields: [.name, .email], // customize billing contact fields for card payment
returnURL: "myapp://payment/return" // App return url
)Option 2: Initialize with a payment intent provider (Express Checkout)
Using a PaymentIntentProvider allows the SDK to delay payment intent creation until just before payment confirmation or when clientSecret is required to request some airwallex API.
// 1. Implement PaymentIntentProvider
class MyPaymentIntentProvider: NSObject, PaymentIntentProvider {
let amount = NSDecimalNumber(string: "99.99")
let currency: String = "USD"
let customerId: String? = "customer_123"
func createPaymentIntent() async throws -> AWXPaymentIntent {
// Call your backend to create the payment intent
let response = try await MyBackendAPI.createPaymentIntent(
amount: amount,
currency: currency,
customerId: customerId
)
return response.paymentIntent
}
}
// 2. Create session with the provider
let provider = MyPaymentIntentProvider()
let session = Session(
paymentIntentProvider: provider, // Payment intent will be created when needed
countryCode: "US"
)Note
We will continue to support integrations using legacy session types until the next major version release. For integration steps, please refer to integration guide
---
title: Mapping between Session and Legacy Sessions
---
flowchart LR
A{Session}
B1[AWXOneOffSession]
B2{Recurring transaction}
C1[AWXRecurringSession]
C2[AWXRecurringWithIntentSession]
subgraph Session.swift
A
end
A -- paymentConsentOptions == nil --> B1
A -- paymentConsentOptions != nil --> B2
subgraph Legacy Sessions
B1;C1;C2
end
B2 -- amount = 0 --> C1
B2 -- amount > 0 --> C2
- make sure you add dependency for
AirwallexWeChatPay(Swift package manager) orAirwallex/AirwallexWechatPay(Cocoapods) - setup
WechatOpenSDKfollowing the Wechat document
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
WXApi.registerApp("WeChat app ID", universalLink: "universal link of your app")
return true
}
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
return WXApi.handleOpen(url, delegate: self)
}
}
extension AppDelegate: WXApiDelegate {
func onResp(_ resp: BaseResp) {
if let response = resp as? PayResp {
switch response.errCode {
// handle payment result
}
}
}
}After completing payment, WeChat will be redirected to the merchant's app and do a callback using onResp(), then it can retrieve the payment intent status after the merchant server is notified, so please keep listening to the notification.
Note
We use internal dynamic framework WechatOpenSDKDynamic.xcframework for WeChat Pay integration.
which is a dynamic framework build from original WechatOpenSDK.xcframework 2.0.4.
By doing this, we can
- Remove unsafe flag
-ObjC,-all_loadfrom SPM targetAirwallexWeChatPay - Stripe architecture
armv7andi386which is no longer needed for modern apps.
The Airwallex iOS SDK allows merchants to provide Apple Pay as a payment method to their customers.
- Make sure Apple Pay is set up correctly in the app.
- For more information, refer to Apple's official doc.
- Make sure Apple Pay is enabled on your Airwallex account.
- Prepare the Merchant Identifier and configure
applePayOptionson the payment session object.
You can customize the Apple Pay options to restrict it as well as provide extra context. For more information, please refer to the AWXApplePayOptions.h header file.
let options = AWXApplePayOptions(merchantIdentifier: applePayMerchantId)
options.additionalPaymentSummaryItems = [
.init(label: "goods", amount: 10),
.init(label: "tax", amount: 1)
]
options.merchantCapabilities = [.threeDSecure, .debit]
options.requiredBillingContactFields = [.postalAddress]
options.supportedCountries = ["AU"]
options.totalPriceLabel = "COMPANY, INC."
let session = Session(
// ...
applePayOptions: options// required for Apple Pay
)Important
Be aware that we currently support the following payment networks for Apple Pay:
- Visa
- MasterCard
- ChinaUnionPay
- Maestro
- Amex
- Discover
- JCB
Coupon is also not supported at this stage.
Note
This is recommended usage, it builds a complete user flow on top of your app with our prebuilt UI to collect payment details, billing details, and confirming the payment.
Make sure you add dependency for Airwallex or AirwallexPaymentSheet.
Upon checkout, use AWXUIContext to present the payment flow where the user will be able to select the payment method.
let configuration = AWXUIContext.Configuration()
configuration.layout = .tab // or .accordion
configuration.launchStyle = .push // or .present
AWXUIContext.launchPayment(
from: "hosting view controller which also handles AWXPaymentResultDelegate",
session: "The session created above",
configuration: configuration
)We provide tab and accordion styles for our payment sheet:
let configuration = AWXUIContext.Configuration()
configuration.elementType = .addCard
configuration.supportedCardBrands = [.visa, .mastercard, .unionPay]
AWXUIContext.launchPayment(
from: "hosting view controller which also handles AWXPaymentResultDelegate",
session: "The session created above",
configuration: configuration
)Tip
If you want to show card payment only but still want to be able to pay with saved cards, you can use
session.paymentMethods to filter by passing [AWXCardKey]:
let session = Session(...)
session.paymentMethods = [AWXCardKey]
AWXUIContext.launchPayment(
from: "hosting view controller which also handles AWXPaymentResultDelegate",
session: session,
configuration: AWXUIContext.Configuration()
)let configuration = AWXUIContext.Configuration()
configuration.elementType = .component
configuration.paymentMethodName = "payment method name"
AWXUIContext.launchPayment(
from: "hosting view controller",
session: "The session created above",
paymentResultDelegate: "object handles AWXPaymentResultDelegate",
configuration: configuration
)Tip
Available payment method names can be found in Airwallex API doc
| Property | Description | Default |
|---|---|---|
elementType |
.paymentSheet (all methods), .addCard (card only), or .component (single method) |
.paymentSheet |
paymentMethodName |
Payment method name (required for .component) |
nil |
layout |
.tab or .accordion (only applies to .paymentSheet) |
.tab |
launchStyle |
.push or .present |
.push |
supportedCardBrands |
Accepted card brands (only applies to .addCard) |
All available brands |
applePayButton |
Customize Apple Pay button appearance (e.g. buttonType, disableCardArt) |
— |
checkoutButton |
Customize checkout button (e.g. title) |
— |
Handle the payment result in the callback of AWXPaymentResultDelegate.
func paymentViewController(_ controller: UIViewController?, didCompleteWith status: AirwallexPaymentStatus, error: Error?) {
// call back for status success/in progress/ failure / cancel
}Tip
If the payment consent is created during payment process, you can implement this optional function to get the ID of this payment consent for any further usage.
func paymentViewController(_ controller: UIViewController?, didCompleteWithPaymentConsentId paymentConsentId: String) {
// To do anything with this ID.
}AWXPaymentElement provides a flexible way to embed payment UI directly into your own view hierarchy.
Unlike AWXUIContext.launchPayment() which presents a full payment sheet as a view controller,
AWXPaymentElement returns a UIView that you can place anywhere in your layout.
Make sure you add dependency for Airwallex or AirwallexPaymentSheet.
We provide tab and accordion styles for our embedded payment sheet:
Note
- The embedded view requires Auto Layout constraints for proper sizing.
- The view's height updates automatically based on content.
- Keyboard handling is the host app's responsibility.
Display a list of available payment methods inside your own view hierarchy.
let configuration = AWXPaymentElement.Configuration()
configuration.layout = .tab // or .accordion
let element = try await AWXPaymentElement.create(
session: session,
delegate: self, // AWXPaymentElementDelegate
configuration: configuration
)
// Add the element's view to your view hierarchy
let paymentView = element.view
paymentView.translatesAutoresizingMaskIntoConstraints = false
containerView.addSubview(paymentView)Display only the card payment form for adding new cards.
let configuration = AWXPaymentElement.Configuration()
configuration.elementType = .addCard
configuration.supportedCardBrands = [.visa, .mastercard, .unionPay] // defaults to all available brands
let element = try await AWXPaymentElement.create(
session: session,
delegate: self, // AWXPaymentElementDelegate
configuration: configuration
)
// Add the element's view to your view hierarchy
let paymentView = element.view
paymentView.translatesAutoresizingMaskIntoConstraints = false
containerView.addSubview(paymentView)| Property | Description | Default |
|---|---|---|
elementType |
.paymentSheet (all payment methods) or .addCard (card only) |
.paymentSheet |
layout |
.tab or .accordion (only applies to .paymentSheet) |
.tab |
supportedCardBrands |
Accepted card brands (only applies to .addCard) |
All available brands |
applePayButton |
Customize Apple Pay button appearance (e.g. showsAsPrimaryButton, buttonType, disableCardArt) |
— |
checkoutButton |
Customize checkout button (e.g. title) |
— |
appearance.tintColor |
Primary brand color used throughout the payment element | SDK default |
Implement AWXPaymentElementDelegate to receive payment lifecycle callbacks from the embedded element.
extension YourViewController: AWXPaymentElementDelegate {
// Required - called when payment completes
func paymentElement(
_ element: AWXPaymentElement,
didCompleteFor paymentMethod: String,
with status: AirwallexPaymentStatus,
error: Error?
) {
// call back for status success/in progress/ failure / cancel
}
// Optional - show/hide your own loading indicator
func paymentElement(
_ element: AWXPaymentElement,
onProcessingStateChangedFor paymentMethod: String,
isProcessing: Bool
) {
// Show or hide loading indicator
}
// Optional - called when a payment consent is created
func paymentElement(
_ element: AWXPaymentElement,
didCompleteFor paymentMethod: String,
withPaymentConsentId paymentConsentId: String
) {
// Store consent ID for future use
}
// Optional - scroll invalid input field into view
func paymentElement(
_ element: AWXPaymentElement,
validationFailedFor paymentMethod: String,
invalidInputView: UIView
) {
let rect = invalidInputView.convert(invalidInputView.bounds, to: scrollView)
scrollView.scrollRectToVisible(rect, animated: true)
}
}Make sure you add dependency for Airwallex or AirwallexPayment.
You can build your own entirely custom UI on top of our low-level APIs.
Note
You still need all required steps listed in Required Setup section above to set up configurations, payment intent and payment session.
you may find Airwallex API Docs useful if you are using this integration style
PaymentSessionHandler is at the center of the API integration.
let paymentSessionHandler = PaymentSessionHandler(
session: "The session created above",
viewController: "hosting view controller which also handles AWXPaymentResultDelegate"
)
// store the `paymentSessionHandler` in your view controller or class that is tied to your view's lifecycle
self.paymentSessionHandler = paymentSessionHandler// Confirm intent with card and billing
paymentSessionHandler.startCardPayment(
with: "The AWXCard object collected by your custom UI",
billing: "The AWXPlaceDetails object collected by your custom UI"
)- Pay with consent object - Confirm intent with a payment consent object
AWXPaymentConsent)
paymentSessionHandler.startConsentPayment(with: "payment consent")- Pay with consent ID - Confirm intent with a valid payment consent ID only when the card is save as network token
paymentSessionHandler.startConsentPayment(withId: "consent ID")Important
Make sure you have Set Up Apple Pay correctly.
paymentSessionHandler.startApplePay()Important
You should provide all required fields defined in "/api/v1/pa/config/payment_method_types/${payment method name}" in additionalInfo
paymentSessionHandler.startRedirectPayment(
with: "payment method name",
additionalInfo: "all required information"
)Handle the payment result in the callback of AWXPaymentResultDelegate.
func paymentViewController(_ controller: UIViewController?, didCompleteWith status: AirwallexPaymentStatus, error: Error?) {
// call back for status success/in progress/ failure / cancel
}Tip
If the payment consent is created during payment process, you can implement this optional function to get the ID of this payment consent for any further usage.
func paymentViewController(_ controller: UIViewController?, didCompleteWithPaymentConsentId paymentConsentId: String) {
// To do anything with this ID.
}We welcome contributions of any kind including new features, bug fixes, and documentation improvements. The best way to contribute is by submitting a pull request – we'll do our best to respond to your patch as soon as possible. You can also submit an issue if you find bugs or have any questions.








