Optional configurations
Learn how to activate additional features for your checkout screen.
You can activate additional features like address collection. The following table shows which fields are configurable in mobile SDK integration and web integration.
Configurations | Mobile | Web |
---|---|---|
customerEmail | ||
billingAddress | ||
shippingAddress | ||
Wallet | ||
itemsLines | ||
taxLines | ||
companyName |
* Currently limited to Postcode and Country only.
Configurations
The mobile SDK UI can do the following:
-
Integrate Apple Pay wallets in addition to card payments.
-
Collect billing address and user email
Use your checkout screen to capture useful information about your mobile app user.
-
Show detailed information about the order
Set up the information that you want to show to your mobile app users.
Add payment methods
By default, the checkout screen supports only card payments. To also enable the Apple Pay wallet, you must first configure Apple Pay. Then pass "Card", "Wallet"
in paymentMethods
when you create a payment intent, for example:
- cURL
- PowerShell
- Python
- C#
- PHP
loading...
loading...
loading...
loading...
loading...
Collect billing address and user email
You can add a form to collect the billing address and user email to the checkout screen.
Pass collectionRequired: true
in config.billingAddress
, and config.customerEmail
, for example:
- cURL
- PowerShell
- Python
- C#
loading...
loading...
loading...
loading...
Show detailed information about the order
You can add information about each position in the order to the checkout page. Pass this data to itemLines
. The itemLines
amounts are independent of the payment intent amount.
- cURL
- PowerShell
- Python
- C#
loading...
loading...
loading...
loading...