#Hood-PM
1 messages · Page 1 of 1 (latest)
Hi! Posting your whole question in this thread:
Hi there!
Im trying to implement now Stripe into our Java app
Before I did it for the IOS and the website
I red the docs and I wonder
Is there a way like in IOS and web to create payment method object without payment intent?
In our app flow customer first save his payment method and then in the next step he get charged
Technically you could just create a PaymentMethod without a PaymentIntent, but that is not recommended.
In our app flow customer first save his payment method and then in the next step he get charged
Do you mean you first save the payment details, and later you charge the customer?
If so, you should use a SetupIntent https://stripe.com/docs/api/setup_intents
Hi Soma!