#zerosodium
1 messages · Page 1 of 1 (latest)
Hi, if your business mode is subscription based, you could use Stripe Billing, https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements where you create the Subscription and then Stripe creates the Payment Intent for you. It handles your subsequent payments on that subscription.
Separately, if you're trying to save the payment method details for future usage, you can pass in the setup_future_usage params: https://stripe.com/docs/payments/save-during-payment
@hoary yew thanks! is there documentation specific to react?
I am using this documentation (https://stripe.com/docs/connect/connect-integration-guide) but doesn't really specify much in regards to subscriptions
Let me see what I can find
thx
I think this example might be useful: https://github.com/stripe-samples/subscription-use-cases/blob/main/fixed-price-subscriptions/client/react/README.md
Essentially, you'd follow this document, https://stripe.com/docs/billing/subscriptions/build-subscriptions?ui=elements with the connect guide, https://stripe.com/docs/connect/subscriptions
for your future reference @hoary yew - I think this is the guide to follow https://stripe.com/docs/payments/accept-a-payment-deferred?type=subscription
but your links were def helpful - so thank you!
Ah, that one is for our Deferred Integration where the Payment Intent is created after the Payment Element renders. If that is what you're looking for, that works.