#Ashis Panigrahi-list-payment-methods

1 messages · Page 1 of 1 (latest)

leaden valley
#

Hi 👋 no, you will need to retrieve those lists of Payment Methods on a per-customer basis.

safe pelican
#

thanks

#

only required parameter is type

#

stripe.PaymentMethod.list(
type="card"
)

so this should give results, right?

leaden valley
#

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.

safe pelican
#

ok

#

so for getting all payment methods response we need to give all the customers and all types of payment in that date range ?

leaden valley
#

Correct

safe pelican
#

thanks