#cynefin_30
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- cynefin_30, 2 days ago, 10 messages
hi! you could save a PaymentMethod to a Customer and then create PaymentIntents directly calling the API when you want to process a payment. https://stripe.com/docs/payments/save-during-payment for instance.
Is the PaymentMethod the create checkout session api
where we specify
payment_method_types: ['card'],
for a customer_id
not sure what you mean, I think you're mixing multiple concepts here.
payment_method_types is how you say which types of payment method you want the customer to be able to pay that CheckoutSession with, it is not an actual PaymentMethod itself(one of this is created during the Session and you can gets it ID from a webhook for example).