#aistudent_code
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/1384409662102835210
đ 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.
- aistudent_code, 6 days ago, 45 messages
This is the manual form for ACH on my ecommerce site. I am saving all these values in the db also.
Hi! Bank account details don't fall within PCI compliance: https://stripe.com/en-sg/guides/pci-compliance
The requirement is to not use Stripe Popup for Financial accounts and payments.
I also want to have a retry option for failed payments? How to achieve it? Any code?
Do you have an example of a failed payment?
Also please let me know if you know of any guide for "Retry" option of failed payments?
Failed payment happen if the bank account does not have enough balance to pay
or enough balance to be debited.
Also, if the webhook has not worked for some reason, then the payment status is incomplete, though on the stripe end it has succeeded. In such scenarios I need to have two buttons, verify payment manually, retry payment.
i WANT these two buttons in front of all my payment intents.
We don't have an automatic mechanism to retry the payment. When a payment fails due to insufficient balance, etc. the payment intent's status moves to requires_payment_method. You will need to collect another payment method from the customer to confirm the payment.
I am not sure what you mean here. Which webhook didn't work? And what does verify payment do?
payment succeeded event, if a payment is succeeded on the stripe server, but I don't get webhook notification properly, the status of my payment remains incomplete on my website. In such cases, I want to have a verify manually button, which will check if the payment has succeeded.
so in this case, we don't need to create any new payment, rather attach a new payment gateway with the payment?
If the PaymentIntent's status is requires_payment_method you don't need to create a new Payment Intent. You can reuse the same Payment Intent but provide a payment method with sufficient funds.