#dc-user_api
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/1224657964892164137
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
Hi!
Please let me know if I can add payment methods(credit card or bank account) for customers in Stripe Connected accounts using embed components.
hi! I'm taking over this thread.
I tried to transfer the card data through the API in order to record the data as a payment method for the customer in Stripe Connect, but it gives an error about the need to comply with PSI DSS standards.
can you clarify where exactly you see that error, and what's the error exactly?
Are there other methods such as embed components that can be used to add a payment method for the customer
what is "customer" here? are you talking about a connected account, or a end user tryong to buy something?
oh, you are trying to send raw card numbers with the API?
that's something we strongly discourage since it has many PCI implications
instead, if you want to collect card numbers from customers, you should use this guide: https://stripe.com/docs/payments/accept-a-payment
One second, I'll describe the problem
We have a system in which we connect payments for our customers through Stripe Connect. We need to add a payment method for the customer so that in the future we issue invoices and make automatic debits from the customer's card or bank account.
same question as earlier: what is "customer" in your sentence? are you talking about a connected account, or a end user trying to buy something? or both?
about connected accounts
so you want to collect a payment method for each of your connected accounts?
yes
but I need to do it not through the stripe dashboard, but through an api or embed component if it exists
I don't want to store the payment data on my server, I want it all to be done on the stripe side
got it. then yes the link I shared above to accept a payment, or this link below to save a payment method should work: https://docs.stripe.com/payments/save-and-reuse?platform=checkout
There are no methods to save the payment method for the customer without creating a payment intent?
the one I liked just above doesn't use a PaymentIntent, but intead use a SetupIntent.