#grim3000-use-saved-pm
1 messages · Page 1 of 1 (latest)
Hey, you likely want this: https://stripe.com/docs/payments/save-and-reuse?platform=web#charge-saved-payment-method
Thanks! I think a point of a confusion is whether creating the payment intent actually executes the charge, or if there is a secondary call I need to make?
from the docs it looks like the payment intent does indeed execute a charge
Yup, the Payment Intent is a state machine for payments basically. The 'confirmation' step is what actually makes the charge
Which creates the underlying Charge object
awesome, I see the charges in my dashboard now. Thanks! One last question - any way to force an ach charge to confirm or reject in the test environment to make sure my webhooks work properly?
You'd use specific test data to simulate the scenario you want: https://stripe.com/docs/payments/ach-debit/accept-a-payment?platform=web&ui=checkout#test-integration
got it thanks
np!