#Ema-sepa
1 messages · Page 1 of 1 (latest)
Hi!
Would that require creating a product on Stripe for every single product our website is going to sell?
It depends on your Stripe integration. For example:
- PaymentIntent+PaymentElement don't support product
- However Checkout Session recommend to use products (but it's not mandatory)
And how does this method of payment usually work implementation-wise?
You can see a guide on how to implement SEPA here: https://stripe.com/docs/payments/sepa-debit/accept-a-payment
Thank you very much! What we're building is basically an ecommerce where products change almost daily so it's a bit rough to add products to stripe for each product 🙂 I was planning on using Checkout + Webhooks
With Checkout Session you don't have to create products object, you can directly pass the information about the price/product dynamically when creating the Checkout Session: https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items-price_data-product_data-name
Thank you so much :> You've been incredibly helpful!