#keith-subscription-bacs
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Do you have it enabled under payment methods here?
https://dashboard.stripe.com/settings/billing/invoice
@undone glacier
just want to make sure you saw my response above
๐
Hi, sorry yes I do
I can see it fine in my original creating subscription flow
it's just when I generate the checkout using the payment intent from any past due ones
Can you share the PaymentIntent ID?
Sure two seconds
I've just paid it with a card, not sure if that makes a difference
but here it is
pi_3NAvE7AjtNFaRAYo1r3oqjxU
Hmm the payment_method_types on a PaymentIntent usually reflect what payment methods are supported
on this PaymentIntent, I only see
"card"
],```
Actually I think it's because from a test clock subscription
Can I set it through the dashboard UI to accept bacs too in that scenario?
keith-subscription-bacs
If you want BACS Debit you need to pass https://stripe.com/docs/api/subscriptions/create#create_subscription-payment_settings-payment_method_types specifically I think in this case as it will need some Mandate information. Can you try that?
Ye that's fine I can do that normally
I'm just trying to test past_due failures, so I make a subscription in the test clock way
but that must only set card as the payment methods
I'm not entirely sure what you call "past due failures" for BACS. It's a bank debit, we try to debit the bank account once and if the debit fails it automatically cancels/stops the Subscription
Sorry let me explain further
I'm making a subscription originally, attaching a card, then setting the default payment method as a failure card so it doesn't work when it renews
advance the time clock to get to that failure date, so the sub is past due
then I send my customers to another checkout with the invoice from the failure subscription, but I want bacs_debit as an additional option on the form as well as card/apple pay etc
ah gotcha, so yeah set the right payment method types and it will work
But is that possible using the test clocks? When I create the subscription in the UI I can't see it
TestClocks have an API
so you'd use the API to do all of this yeah, it's not really in the UI unfortunately
yeah or just do everything end to end with code, which is my recommendation
Cool I'll try it out, thank you