#leanvitale_api

1 messages ยท Page 1 of 1 (latest)

lyric compassBOT
#

๐Ÿ‘‹ Welcome to your new thread!

โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.

โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.

๐Ÿ”— This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1363890209720107090

๐Ÿ“ Have more to share? Add more details, code, screenshots, videos, etc. below.

devout venture
#

Is this possible?

#

We are trying to do something like the following picture, where the user chooses in advance whether to load a new card or Apple Pay

#

Like this

zealous bay
#

Hi ๐Ÿ‘‹ if you want to accept Apple Pay payments on the web through a Stripe integration, then you will need to use either Stripe Checkout or Stripe Elements to do so.
https://docs.stripe.com/apple-pay?platform=web#accept

If you want a wallet-specific flow, then you can implement our Express Checkout Element instead of the Payment Element:
https://docs.stripe.com/elements/express-checkout-element

So the gist of the flow would be:

  • Collect input from the customer on whether they want to use a wallet:
  • If so, show them the Express Checkout Element
  • If not, show them the Payment Element
devout venture
#

Thanks

#

I will give it a try