#wayo-ach-verification
1 messages · Page 1 of 1 (latest)
Hello 👋
With ACH and instant verification, the customer typically logs into their bank account to provide account information as shown in the payment flow.
https://stripe.com/docs/payments/ach-debit#payment-flow
I believe a successful sign-in validates the account.
https://support.stripe.com/questions/nacha-bank-account-validation-rule
I am trying to be Nacha compliant and it does say bank account validation happens using instant verification is that right?
If instant verification fails, can micro deposits be successful?
Thanks!
I use subscriptions with a set amount to take payments. I was wondering if there was a way to use subscriptions but have the customer choose the amount they want to pay. Or what options do I have?
Yes this is all possible! You would ask them how much to pay and then create a Price for that specific amount/currency and then subscribe them to this Price
So I would just need to update the payment intent field amount ? The PI should be tied to subscriptions, I believe.
no not at all. You would need to do what I described
A PaymentIntent has no Price, it's just an amount, and it doesn't do anything recurring.
What you need to do is control the Price associated with the Subscription when you create it
This would work with a different amount each time they pay?
I don't know what that means, please try to be descriptive with concrete examples of what they pay when. But it's quite uncommon to have a subscription monthly where you change the amount to pay each month
I realized it's uncommon so I was wondering if possible at all. But basically the customer will be able to pay what they want each time they want to make a payment.
then yes it's possible if you handle this yourself, either for each payment or changing the Price each month
I see price is an object and is part of the subscription object inside items property. So we just update the property unit_amount inside the Subscription object?
no that's not at all how Subscriptions work unfortunately
you don't just change an amount. A Subscription has one or multiple Price(s) objects associated with it, and you need to move the Subscription to a new Price object. So they are on Price price_A for $10/month and if next month they want to donate $27/month then you create Price price_B for $27/month and then you switch it to that Price
We would add another Price object by appending it to the data property inside the items property?
How do we "switch it to that Price"?
https://stripe.com/docs/billing/subscriptions/upgrade-downgrade please take some time to carefully go through our docs and understand how Subscriptions work