Redirect
Integration flow for Redirect module

(Optional) Create a
CustomerCreate a customer object and pass it to your server if you want to save your customer's details and attach payment information to them. (This step is compulsory when you process recurring payment for a new customer)
From your server, access Airwallex API to Create a Customer API
Create a
PaymentIntentYour client app will need a
PaymentIntentto form a payment session for Airwallex SDK to present payment flow.From your server, access Airwallex API to Create a Payment Intent API and pass the
PaymentIntentreturned to client app.Call
AirwallexStarter.presentPaymentFlowwith anAirwallexSessionand aPaymentResultListenerto present payment flow to the shopper.JavaIn
PaymentResultListener, handle the payment status which shows whether the shopper has completed the payment flow or not.Note that a completed flow does NOT imply a successful transaction, you need to query the payment result afterwards through your server to know whether the order is paied or not. Inside
AWXPaymentResultDelegate, ask your server to retrieve thePaymentIntent.From your server, retrieve the Payment Intent API, get the payment result within it and return it to client app.