I am working with Stripe from last several days and Now working with get list of payment method.
When I am getting payment method by calling this api https://api.stripe.com/v1/customers/cus_9s6XKzkNRiz8i3/payment_methods, it showing all verified payment method.
But I need the payment method that not verified so that user can verify later from the list.
How can I achieve that.
<code> const paymentMethods = await stripe.paymentMethods.list({
customer: customerId,
type: type,
limit: 100, // Maximum limit per request
starting_after: startingAfter || undefined,
});
totalCoun
</code>
<code> const paymentMethods = await stripe.paymentMethods.list({
customer: customerId,
type: type,
limit: 100, // Maximum limit per request
starting_after: startingAfter || undefined,
});
totalCoun
</code>
const paymentMethods = await stripe.paymentMethods.list({
customer: customerId,
type: type,
limit: 100, // Maximum limit per request
starting_after: startingAfter || undefined,
});
totalCoun