#jakel_docs

1 messages ¡ Page 1 of 1 (latest)

prime boughBOT
#

👋 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/1273034869198422237

📝 Have more to share? Add more details, code, screenshots, videos, etc. below.

drifting herald
#

Hi there

#

No, this isn't possible.

#

the charge is split between the 2 stripe platforms
You can split a charge between two connected accounts, where each of those connected accounts is connected to the same parent platform

verbal mason
drifting herald
#

You wouldn't. Working directly with Tokens means you'd use the Charges API (a legacy API) instead of PaymentIntents

verbal mason
#

got it. so payment intents really only work when using an existing stripe elemnet ( card element, payment element, etc)?

drifting herald
#

As opposed to?

verbal mason
drifting herald
#

Taking a step back, are you building a new integration or do you currently use Tokens and Charges to charge customers?

verbal mason
#

a new integration.

we currently use the stripe payment element and payment intents

drifting herald
#

The document you found is explicitly for developers who need to migrate from Tokens/Charges to PaymentIntents so assumes you already have some saved cards that you don't want to save again

#

So if you're creating a brand-new integration, don't use Tokens and Charges at all. In a typical PaymentElement integration, you should create the PaymentIntent server side then confirm the PaymentIntent client side with the payment details provided by the customer. We'll use those payment details to create a PaymentMethod object on confirmation

verbal mason
#

okay got it, thanks. i will do some more research. than you