No momento, esta página não está disponível em português
Payment-method icon

Apple Pay Component

Add Apple Pay to an existing iOS Components integration.

On this page, you can find additional configuration for adding Apple Pay to your Components integration.

If you are selling digital goods in your native iOS app, use Apple's in-app purchase instead of Apple Pay.

Before you begin

This page assumes you have already built a Components integration.

Set up Apple Pay

Enable Apple Pay with your own Apple Pay certificate.

API reference

You don't need to send additional fields for Apple Pay. To see optional fields that you can send for all payment methods, choose the endpoint you integrated:

If you run into an error, refer to Handle Apple Pay errors.

Component configuration

Configure and create an instance of the Apple Pay Component. Include the following when you configure the Component:

Parameter name Description
paymentRequest Your Apple Pay PKPaymentRequest object.
merchantIdentifier Your Apple Pay merchant identifier.
requiredBillingContactFields The fields required for the billing contact.
requiredShippingContactFields The fields required for the shipping contact.

Optional configuration

If your integration uses iOS Components v5.0.0 or later, you can optionally include the following when you configure the Component:

Parameter name Description
billingContact A prefilled billing address.
shippingContact A prefilled shipping address.
allowOnboarding Set to true to let the shopper add cards to their Apple Pay wallet if they haven't already done so. Otherwise, the shopper can't use Apple Pay.
Default: false.
shippingType The type of shipping displayed, for example Pick Up, Ship To, or Deliver To. This is localized.
Default: PKShippingTypeShipping = .shipping.
allowShippingContact Set to false to prevent the shopper from changing the shipping contact field before showing the payment form.
Default: true.
shippingMethods An array of supported shipping methods.
applicationData Additional information that you provide about the payment request. For example, an order number or cart identifier.
This is signed and included in the resulting PKPaymentToken.
supportedCountries Only allow payments from cards issued in specific countries. This is a list of ISO 3166 country codes.
supportsCouponCode Set to true to let the shopper enter a coupon code which gets validated.
Default: false.
couponCode A coupon code that has already been applied to the payment request.
PKRecurringPaymentRequest Required for recurring payments. Include PKRecurringPaymentRequest to specify that the payment is a recurring payment.

Recurring payments

To enable recurring payments, you must include PKRecurringPaymentRequest when configuring Apple Pay.

To make recurring Apple Pay payments, you have to create a shopper token and then make subsequent recurring transactions with the token.

Test and go live

Use Apple's test card numbers to test your integration.

For a full list of test cards and instructions how to add these to your test device, see Sandbox testing on Apple's Developer website.

Check the status of an Apple Pay test payment in your Customer Area > Transactions >  Payments.

Going live

To process live Apple Pay payments, your API credential needs to have the API Clientside Encryption Payments role. You can check this in your live Customer Area or ask your Admin user to verify.

Make sure you follow Apple's guidelines on:

  1. Enable Apple Pay on your Apple Pay Developer account for your live merchant identifier.

  2. Set up your server for secure communication with Apple Pay.

See also