#swe_api
1 messages ¡ Page 1 of 1 (latest)
đ 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/1240407943564759131
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
You need to setup the Payment Method for future usage before attempting to make recurring payments with it. You use Setup Intents instead of Payment Intents for this.
I'd recommend building a prototype with this guide: https://docs.stripe.com/payments/ideal/set-up-payment?platform=web&payment-ui=elements&lang=python
Why do you suggest using payment intents instead of setup intent? I usually use payment intent - only when amount is involved, in other cases - we use setup intent only.
I suggested the opposite
Setup Intents for setting up a Payment Method for future payments
If I have a use case of setting up a payment method for future payments along with making the first payment?
For example - a subscription usecase to start a recurring transaction as well as first installment collection?
In that case, should we be using setup intents - to create a payment method and again a payment intent - to make an actual payment?
Why not use a one-off Invoice Item instead of a wholly separate charge unrelated to the Subscription?
We are not using Stripe's subscription API yet. So, building a custom solution
Ah, got it. Yeah, I mean, in that case you would still use Setup Intents, then just immediately create a payment once it's setup.
Does this rule apply only for single use payment methods like ideal, bancontact or all payment methods like SEPA, ACH as well ?