#aistudent_docs

1 messages ยท Page 1 of 1 (latest)

azure etherBOT
#

๐Ÿ‘‹ 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/1374735414715355286

๐Ÿ“ 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.

sullen geyser
#

Hi there ๐Ÿ‘‹ I'm glad to hear that guide helped! Feel free to drop your additional questions here.

cold roost
#

Hi @tarzan. I also had another chat with you yesterday. Thanks for that.
I am following this guide https://docs.stripe.com/payments/ach-direct-debit/set-up-payment?platform=web&payment-ui=elements and successfully created payment gateways on stripe for customers.

Now my question is regarding microdeposts, is it required or a must part of this flow? Should I implement microdeposit system also? Also the guide does not give proper clue, how can I do it?

Also as this is a saved payment method, How can I use it for payments, I need guide on that also. I am going to create a system on my ecommerce site where users will save a preferred ACH payment to their profile

Learn how to save payment method details for future ACH Direct Debit payments.

sullen geyser
#

Now my question is regarding microdeposts, is it required or a must part of this flow? Should I implement microdeposit system also? Also the guide does not give proper clue, how can I do it?
Did you take a look at Step 5 in that guide which discusses that not all customers will be able to verify their bank account instantly and walks through how to handle the microdeposit verification flow?
https://docs.stripe.com/payments/ach-direct-debit/set-up-payment?platform=web&payment-ui=elements#web-verify-with-microdeposits

Also as this is a saved payment method, How can I use it for payments, I need guide on that also. I am going to create a system on my ecommerce site where users will save a preferred ACH payment to their profile
How do you plan to use these payment methods? Does the guidance in Step 7, Accepting future payments, in the guide you referenced not meet your needs?
https://docs.stripe.com/payments/ach-direct-debit/set-up-payment?platform=web&payment-ui=elements#web-future-payments

cold roost
#

tHANKS for the links, let me check. The first link you sent, has only this code, but this is not explantory as to where it needs to go.
next_action: {
type: "verify_with_microdeposits",
verify_with_microdeposits: {
arrival_date: 1647586800,
hosted_verification_url: "https://payments.stripe.com/โ€ฆ",
microdeposit_type: "descriptor_code"
}
}

sullen geyser
#

That whole section explains the flow, you need to look at more than just the code samples. The first part of the section explains that you can enable automatic emails that Stripe will send to your customers. Then it explains that you can disable that if you want to send your own comms instead, and instructs you to send your customers the link provided in the hosted_verification_url field if so.