#.minalv
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- .minalv, 5 days ago, 19 messages
hi! that's because you use a SetupIntent, so that's normal.
really you should just use a PaymentIntent from the start, it makes no sense to do a SetupIntent and then immediately a PaymentIntent after it. Use a PaymentIntent from the start.
@prime epoch But we want to use off session so we can charge beased on usage
so you use the SetupIntent to save the payment method, and then days/weeks later you create a PaymentIntent off_session to charge the amount?
well then you should be using https://stripe.com/docs/payments/save-during-payment to do a PaymentIntent for that initial amount and not using a SetupIntent
but how we can charge later if we remove setup intent from the currunt flow
same way you do now.
You can use a PaymentIntent to charge an amount, and save the card, at the same time. https://stripe.com/docs/payments/save-during-payment You only use a SetupIntent when you're saving a card without a payment. If there is a payment, use a PaymentIntent, with setup_future_usage. https://stripe.com/docs/payments/save-during-payment