#john-l_best-practices
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/1346118274026311731
📝 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.
- john-l_code, 2 days ago, 28 messages
- john-l_best-practices, 3 days ago, 27 messages
You are probably looking for this:
https://support.stripe.com/questions/reusable-object-migration-from-sources-to-payment-intents
But you are using card payment methods, right ?
If so you can use the card_ id with PaymentIntent directly like a Payment Method
How do I access this migration tool?
You can access the tool by following this link to your Dashboard. If you have not already done so, you will first be prompted to opt into a preview for Workbench - please accept by selecting “start migrating with Workbench.”
that link on the docs takes me to the dashboard -- no special migration tool
I'm using CheckoutSession
For Card Payment no need to migration tool
That's for non card payments
You can use the existing Id with PaymentIntent
Does that not apply to CheckoutSession though? I get an error when I try
"error": {
"message": "An error has occurred confirming the Checkout Session.",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_Ls0qnQokHYf41R?t=1740974655",
"type": "invalid_request_error"
}
}```
at this point i don't really know if there's any benefit to me using Checkout Session, I might just be able to swap it out with PaymentIntent. The Embedded Components recommends the Checkout Ssession API : https://docs.stripe.com/payments/online-payments#compare-features-and-availability
Hi, taking over as my teammate needs to step away. Let me catch up.
To provide a little more context, I'm already displaying the saved payment methods with our own code, so all the Elements are doing is providing the CC, Exp date, and CVC
I just don't know if it's worth keeping the Checkout Session and migrating the card data or swapping to Payment Intents where I might be able to use the existing card_ type and then customers will gradually add new cards and we'll get off the old method
The error we returned on that request is due to using card id. Let me see if there are any workarounds here