#izaerax-connect
1 messages · Page 1 of 1 (latest)
Hi toby, I need a paymentMethod that use bank transfers
something that allows me to make a bank transfer directly to the connected account
So you're looking for a flow where you can charge a bank account and send the funds of that payment to a connected account?
exactly, after I took my application fees
In that case the limiting factors will be what type of charge you're planning to use for your connect scenario:
https://stripe.com/docs/connect/charges
And what payment methods are supported on the account where the payments are settling
izaerax-connect
in the old API I had sepa_credit_transfer as payment_method, now I can't find it, i see only [alipay, au_becs_debit, bacs_debit, bancontact, card, card_present, eps, giropay, ideal, interac_present, klarna, p24, sepa_debit, and sofort]
SEPA credit transfer is not currently supported on the payment method/payment intent APIs: https://stripe.com/docs/payments/payment-methods/integration-options#payment-method-product-support
Hi synthrider, I badly explained myself,
im working on an old code that use this kind of api call (ruby)
@source = Stripe::Source.create(
type: "sepa_credit_transfer",
currency: "eur",
owner: {
name: user.first_name,
email: user.email
}
)
Yep, this is not part of the public API, and it is not currently supported via Payment Methods. You'll need to keep that integration as it is currently.
You're using a beta that is only available via the Sources API currently
ok, but actually we are changing our platform and I have to implement this process in a new platform (python)
is there any page where i can see this kind of transfer?
"sepa_credit_transfer"
Do you mean you have created a new Stripe account?
If so, you'll need to contact support and describe your use case for this here: https://support.stripe.com/contact
Find help and support for Stripe. Our support center 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.
I'm using the same stripe account with 2 different platforms
Are you encountering request errors? Can you share those?