#meteograms-checkout
1 messages · Page 1 of 1 (latest)
in payment mode, if you want to save the payment method, you can simply add payment_intent_data.setup_future_usage when you create the checkout session
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
it will automatically setup the card
- if you provide a customer parameter, the checkout session will automatically attach the card to the customer
- If you don't provide a customer parameter in creating checkout session, you can always create a new customer with the payment_method
Perfect! Thanks for the help.