Apple Pay
Apple Pay offers a frictionless payment experience in Safari based browsers on iOS and macOS. Apple Pay can be activated in the Optimize Administration and only requires a card acquiring agreement supporting Apple Pay.
Billwerk + Payments Checkout determines if Apple Pay is supported for the browser and OS used, and presents Apple Pay as a payment method if no payment_methods
argument has been given when creating the session, or applepay has been defined in the list of payment methods.
Notice
Apply Pay does not allow to be run within an iframe, thus Apple Pay is only supported in a window mode. However, for Safari browser version 17 or newer, Apple Pay will work in Embedded and Modal mode too.
To determine on the own site if Apple Pay is supported, the following SDK method can be used.
<script src="https://checkout.reepay.com/checkout.js"></script>
<script>
const isAvailable = Reepay.isApplePayAvailable();
// e.g. hide/show Apple Pay option
</script>
Liability shift
Apple Pay supports liability shift for American Express, Discover, JCB, Mastercard, and Visa cards issued in Europe. For non-European Visa cards, there is no liability shift for Apple Pay.
Liability shift means that the financial risk in case of fraud is put on the card acquirer or cardholder, instead of the merchant.
Apple Pay recurring
Apple Pay can also be used as a recurring payment method if enabled in the Configuration → Payment Methods section. A saved payment method can be obtained either by a recurring session or a charge session with the recurring flag set recurring=true
.
To control the data shown by Apple Pay the following parameters can be given in the optional session_data
object.
Parameter | Description |
---|---|
applepay_recurring_payment_start_date | Recurring payment start date in format yyyy-MM-dd to be displayed to the user. |
applepay_recurring_payment_end_date | Recurring payment start date in format yyyy-MM-dd to be displayed to the user. |
applepay_recurring_payment_interval_unit | Recurring payment interval unit to be displayed to the user. One of the following values: year, month, or day. |
applepay_recurring_payment_interval_count | Recurring payment interval count to be displayed to the user. |
applepay_recurring_label | Label to be displayed to the customer. Maximum 64 characters. |
applepay_recurring_amount | Fixed recurring amount. |
Updated 5 months ago