#ayeshaikh_7
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. 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.
- ayeshaikh_7, 10 minutes ago, 10 messages
- ayeshaikh_7, 1 day ago, 8 messages
- ayeshaikh_7, 1 day ago, 3 messages
I see! In this case, you will use Setup Intent to collect the payment method (https://stripe.com/docs/payments/ach-debit/set-up-payment) and set it as the default payment method of the invoice (https://stripe.com/docs/api/invoices/create#create_invoice-default_payment_method)
I am using this stripe.customers.createSource
Source is a legacy integration and it's no longer recommended. I'd suggest using Setup Intent in the above doc
yeah this implementation was done 2 years
If you have a legacy ACH integation that uses Sources: https://stripe.com/docs/sources/ach-debit#manually-collecting-and-verifying-bank-accounts
But if this is a new integration you should be using Payment Methods via Setup Intents
it is legacy implementation
I wanted to do some action -- after 15 days from when micro-deposits were sent
since microdeposit verifications have a timeout of 10 days -- I also want to send reminder email maybe.
Something you'd need to build yourself. I guess you can do that after receipt of customer.source.created events then, and queue a job to send an email: https://stripe.com/docs/api/events/types#event_types-customer.source.created
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
how will I come to know that microdeposits were sent to customer?
They're automatically sent on creation of the Source: https://stripe.com/docs/sources/ach-debit#manually-collecting-and-verifying-bank-accounts:~:text=When using Stripe,after 5 days.
5 days actually
yeah, they are sent automatically. But is there any way to know when was it sent -- so that 7 days from when it was sent I can remind my customers about micro deposits timeout
microdeposit verifications have a timeout of 5? days
As I said, they're sent when the Source is created. So n days from receipt of the customer.source.created object
Yes, please read the documentation I'm sharing with you
page not found
Yep because the APIs are deprecated so it's behind a gate. But your acocunt should have access so make sure you're signed in to the account on the page
I am signed in now, still not able to access
Then I'd guess your account doesn't have access. You'll need to write in: https://support.stripe.com/contact
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.
ok, thanks
https://stripe.com/docs/payments/ach-debit/set-up-payment?platform=web#web-verify-with-microdeposits
Verification attempts have a limit of ten failures for descriptor-based microdeposits and three for amount-based ones. If you exceed this limit, we can no longer verify the bank account. In addition, microdeposit verifications have a timeout of 10 days.
from above doc
Yes, but that's for the newer APIs which you're not using
Seems so