#Omri-bacs_debit
1 messages · Page 1 of 1 (latest)
req_H1TlKNUVsbHRbv
Let me take a look
it should just work in test mode, you don't need to explicitly activate it.
the error message you posted is about BACS Debit though, not SEPA Debit(or ACH Debit), they're all different things.
Can you share the request ID for the actual error, or the code you ran that results in that specific "The payment method type provided: bacs_debit is invalid." error ?
payment_method_types: ['bacs_debit'],
mode: 'setup',
success_url: 'https://example.com/success?session_id={CHECKOUT_SESSION_ID}',
cancel_url: 'https://example.com/cancel',
}, {stripe_account: @entity.stripe_uid})```
this code is from https://stripe.com/docs/payments/bacs-debit/connect/accept-a-payment
and I try to run it for my first time
can you share the acct_xxx account ID you're using as "stripe_uid"?
this error means that BACS is not enabled on that account, so that's the one where it might have to be activated. The details of how to do that depend on what that account is.
ok, that is a testmode Standard Connect account in the US. US Stripe accounts can not accept BACS payments, so this won't work.
(see Country Availability in https://stripe.com/docs/payments/payment-methods/bacs-debit , only UK accounts can accept BACS).
Here if you're doing a Direct Charge, it's the connected account who is processing the payment, so this won't work with a US account the way you're doing it.