#michael_savedpms-setup

1 messages ยท Page 1 of 1 (latest)

wintry zealotBOT
#

๐Ÿ‘‹ 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.

crude holly
#

@unborn finch Can I ask you to be a bit more specific? What are you really trying to do?

rancid carbon
#

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

crude holly
#

yeah but that sentence could mean something completely different. That's why I'm asking if they can be more specific ๐Ÿ™‚

rancid carbon
#

appreciate it

unborn finch
#

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

rancid carbon
#

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

crude holly
#

@unborn finch PaymentElement works with SetupIntents though

unborn finch
#

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

crude holly
#

michael_savedpms-setup