#dingkai031
1 messages · Page 1 of 1 (latest)
Yes, a payment_method will be created and attached to the customer.
If so, where is the payment_method is saved? is it in the customer object?
Because I didn't see payment_method attribute inside the customer object in the docs
it's not inside the customer object, https://stripe.com/docs/api/payment_methods/customer_list?lang=ruby#list_customer_payment_methods you can use this API to list down the payment_methods that are attached to a customer.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I see, thanks for the info