#maximel-subscription-ach

1 messages · Page 1 of 1 (latest)

pliant vale
verbal oxide
#

Ok no problem. Would there be another way to create a subscription using ACH Debit? I was able to create a one time charge using Plaid tokens:

cust = stripe.Customer.create(
    description="My First Test Customer (created for API docs)",
    source=bank_account_token,
)


charg = stripe.Charge.create(
    amount=2000,
    currency="usd",
    customer=cust.id,
    description="My First Test Charge (created for API docs)",
    capture=True,
)
pliant vale
verbal oxide
#

Ok sounds good I'll use this method. Just to double check, I believe Plaid bank_account_token's can normally be used only once, but once the Customer is created, the Subscription will be able to charge the Customer bank account for Subscription fees every month/year/etc?

pliant vale
#

correct, you use the token once to save/attach it to a customer and then it can be charged every month/year

verbal oxide
#

ok perfect, thanks a lot for your precious help

pliant vale
#

Of course, ask if you need more help 🙂