#valdozzz_unexpected
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/1215331383828946984
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Yeah if you got an incorrect zipcode error, that comes from the bank/issuer
So recommend you contact them to resolve
how that error is issued practically?
What do you mean by that
just wanna know why that error happens
because the payment element doesnt show any zip code input field to type
It happens when the zipcode you input doesn't match the one the bank has on file
Payment element should show postal code field
i can show you a screen that my stripe payment element doesnt show the zipcode
the payment elemend is mode: "setup", setupFutureUsage: "off_session", paymentMethodCreation: "manual"
yep
<Elements
stripe={stripePromise}
options={{
mode: "setup",
setupFutureUsage: "off_session",
appearance: appearance,
currency: "eur",
payment_method_types: ["card"],
paymentMethodCreation: "manual",
}}
>
<PaymentElement
className="my-2"
options={{
business: { name: "TextYess" },
layout: "accordion",
}}
/>
Hm ok. Yeah sometimes we automatically hide a field if it's determined to not be needed. Can you share a request id where you go the incorrect zipcode error?
Find help and support for Stripe. Our support site provides answers on all types of situations, including account information, charges and refunds, and subscriptions information. Get your questions answered and find international support for Stripe.
Postal code was collected for that card though from your frontend. See: https://dashboard.stripe.com/logs/req_O5ic39X0Kvp926
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
It's just that the bank is saying it's incorrect
When you attempt to attach it to the customer we're doing an auth call to the issuer
and they're saying it's wrong
ok, thanks guys!