Adding IBAN defaults to stripe's PaymentElement

612 Views Asked by At

The react-stripe-js IbanElement offers options like supportedCountries and placeholderCountry:

<IbanElement
  ...
  options={{
    supportedCountries: ["SEPA"],
    placeholderCountry: "DE",
  }}
/>

but the recently published PaymentElement does not:

<PaymentElement
  ...
  options={{
    ???
  }}
/>

Is there a way to add these defaults to a PaymentElement whose clientSecret is configured with sepa_debit in its payment_method_types?

1

There are 1 best solutions below

1
On

For Payment Element, supportedCountries does not need to be defined as Payment Element automatically determines which payment methods to display [0], based on:

  • The customer’s location.
  • The product’s currency.
  • Your Dashboard settings on which payment methods to accept [1].

The placeholderCountry is not available for customisation.

[0] https://stripe.com/docs/payments/payment-element
[1] https://dashboard.stripe.com/settings/payment_methods