#masonhale_paymentintent-link
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/1234987339558813717
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! Do you have a request ID that gave you that error message?
I'm looking, this got reported from a customer through our customer support helpdesk. Hopefully our Sentry integration picked something up...
We're in luck! req_c3FFx4VKMkSl17
masonhale_paymentintent-link
That is a PaymentIntent request made server-side with a ~3.5 years old API version. Because of this it's defaulting to only card payments
So, upgrading the API version we're using in this call should resolve this issue?
You want to read https://docs.stripe.com/upgrades/manage-payment-methods carefully. Either upgrade to a newer API version in your code, or explicitly enable automatic payment method calculation using https://docs.stripe.com/api/payment_intents/create#create_payment_intent-automatic_payment_methods-enabled
Ok, thanks. That helps!
In my defense -- when we launched our Stripe integration in January 2022, the 2020-08-27 version was current at the time. It appears the 2023-08-16 API update (less than a year ago) that would have prevented us from stepping on this landmine. I appreciate the help and will strive to stay on top of Stripe API updates in the future.