#michael_savedpms-setup
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1291437692147601519
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- michael_checkout-connect, 16 hours ago, 24 messages
@unborn finch Can I ask you to be a bit more specific? What are you really trying to do?
I think he wants in his stripe element to include a list of saved payment methods on that customer_id so you don't have to always get a new payment method each payment_intent.
I was looking for something similar as well
or perhaps he just wants a embeded management system
unclear
yeah but that sentence could mean something completely different. That's why I'm asking if they can be more specific ๐
What you want @rancid carbon is https://docs.stripe.com/payments/accept-a-payment?platform=web&ui=elements#save-payment-methods
appreciate it
Payment management system. I want to show all of the payment methods for a customer, but not using payment intent. I am adding the payment methods through the setup intent, but I need a way to display the saved payment methods
In the past I have done this with server side
// Get the payment method details for a customer
customerPaymentMethods = await stripe.paymentMethods.list({
customer: customer?.stripe_customer_id,
type: 'card'
});
and making my own UI
@unborn finch PaymentElement works with SetupIntents though
The user is not trying to submit a payment, but only save a payment method for later
Just need to confirm that I will need to create my own ui