Skip to main content

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.

ConfigurationsMobileWeb
customerEmailyesyes
billingAddressyes yesyes
shippingAddressnoyes
Walletyesyes
itemsLinesyesyes
taxLinesnoyes
companyNamenoyes

*   Currently limited to Postcode and Country only.


Configurations

​ The mobile SDK UI can do the following:

Add payment methods

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:

configuration/curl/add-payment-methods.sh
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: ​

mobile-sdk/configurations/curl/billing-address-and-email.sh
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. ​

mobile-sdk/configurations/curl/show-information.sh
loading...