#devsmith
1 messages · Page 1 of 1 (latest)
hi! sure, generally you'd save the card details, and then make multiple PaymentIntents over time to charge each installment when needed.
for example https://stripe.com/docs/payments/save-during-payment
or you can model an installment plan on our subscriptions APIs : https://stripe.com/docs/billing/subscriptions/subscription-schedules/use-cases#installment-plans
i cant use subscription as i want payments to be generated on time basis
and dont want to create subscription plans from stripe dashboard
no worries, then you can use the other option I mentioned
but how stripe will let know that date is for second installment and needs to pay through card ?
it doesn't, your code manages that
you would save the card details on Stripe, and then later your code calls the API to tell us to process a new payment against the saved card details, and so on, for each installment
kk