#Priyanka
1 messages · Page 1 of 1 (latest)
It will be triggered in the backend when I hit certain endpoints and it maybe a recurring or not recurring.
So you want to collect the payment information and charge the customer once or multiple time?
That's correct! I simply want to collect simple payment for a customer
Then you should read this guide: https://stripe.com/docs/payments/accept-a-payment?platform=web
It says about creating a checkout session but I don't want to do that. We don't have a front end yet and the requirement is to collect a a payment without customer entering their card details etc. It should be happened without any customer intervention. Like from backend services
It should be happened without any customer intervention.
How do you collect the payment details then? And how would you handle the 3DS flow (if required by the bank)?
Customer information and card details are already registered in Stripe.
Based on that I want to create automatic payment
SO based on that some later time when customer uses some subscription related services then I wan to get the payment from the card they have already entered
Oh, I see. In this case you can just create as off_session PaymentIntent. But note that it can fail if the bank request 3DS.
And in this case you need to tell the use to come back to your website/app to go though the 3DS flow.
Ohh Perfect. Thank you so much for the information. Wish you a wonderful day!