#Ashis Panigrahi-list-payment-methods
1 messages · Page 1 of 1 (latest)
Hi 👋 no, you will need to retrieve those lists of Payment Methods on a per-customer basis.
thanks
only required parameter is type
stripe.PaymentMethod.list(
type="card"
)
so this should give results, right?
You are correct that type is the only required field, but if you omit the customer parameter then you won't see any Payment Methods that are attached to Customers.
ok
so for getting all payment methods response we need to give all the customers and all types of payment in that date range ?
Correct
thanks