#espagnol01
1 messages · Page 1 of 1 (latest)
I can try, what's the context?
I am using API calls to create new invoices and so. But for some reason I can only pay with credit card
and I need to be able to pay with BACS
but it is not showing
I have already enable it on the payment methods inside settings
invoices use different settings unfortunately
you have to enable the payment methods there
should I pass the payment_metod directly in the API instead?
i dont see BACS in the list
i am trying to enable this for people in the UK
yeah we might not support BACS in the hosted invoice page, let me look
yeah we don't, it's not listed on https://stripe.com/docs/invoicing/payment-methods as supported unfortunately
not using Invoices and using Checkout or PaymentIntents; writing to https://support.stripe.com/?contact=true to raise the feedback
let me checking something though
for context are you using Subscriptions or creating the invoices as one-offs?
we have customers that one to pay 1 time for the whole year. Then I need to trigger a delayed subscription that will use the same payment method that the customer have store to charge every month
other customers will apply directly to a subscription.
hmm.
so i have both use cases
well we do support BACS for subscriptions (https://stripe.com/docs/billing/subscriptions/bacs-debit), I just tried it there and it works and creates the first invoice of the subscription and pays it and stuff
ok
for whatever reason it's not supported for one-time invoices
I can fix that now and then I come come back to replace the invoice with a payment intent
can you help me to enable BACS properly on the subscriptions?
my suggestion would be to use Checkout, it supports ~all payment methods in both mode:payment for one time, and mode:subscription for recurring
can try what part isn't working?
bacs is not showing up on the subscription invoice
yeah like I said I don't think it's supported as a payment method for an invoice
also do please share the invoice ID in_xxx so we can look
oh, ok. So, basically a subscription can also be an invoice
a subscription is just a process for creating invoices on a recurring basis yep
sorry, i dont have a financial background
got it
i will need to re do this
you are recommending me to create a payment intent instead right?
or checkout?
i just created a new product. Now I created a new price. Now I need to add the payment intent?
Hi! I'm taking over this thread.
Hi Soma, thank you
So your goal is to create a subscription that the customer will pay with BACS?
exactly
and the previous agent recommended to use Payment Intent
is this correct?
The simplest way is to create the subscription with a Checkout Session in subscription mode. You can learn more about how to do this here: https://stripe.com/docs/billing/subscriptions/build-subscriptions
i dont need a webshop for this right?
If you want to have recurring payments with subscription, you shouldn't use PaymentIntents.
i dont need a webshop for this right?
What do you mean?
can i give you a little bit of context?
Sure!
We build fiber infrastructure to deliver internet. So, when a customer wants to buy fiber for their house, we go there, dig, install the fiber, connect the customer to the switch so that the internet providers can deliver internet to them over fiber.
The price for the installation is for example 20000 swedish kronors. So, some people wants to pay this at once, and some other people want to pay per month.
the ones that pay a 1 time 20.000 then we need to add a subscription at the end of the contract for a regular subscription
Yes, well with Stripe to can do one-time payments and subscription. Both are possible with BACS. To accept payments I recommend using Checkout Session (if you are a developer, using the link I shared above) or Payment Links (that can be created directly in the dashboard, learn more here: https://stripe.com/docs/payments/payment-links)
ok, but I need to create something that will last
so, payment links should be a solution
will this create a receipt and everything? is it attach to a customer?
will this create a receipt and everything?
There is a dashboard setting to send receipts https://dashboard.stripe.com/settings/emails
is it attach to a customer?
Payment Links will create new customer objects in Stripe
but I already know the customer. That is what I mean, I need to create a flow that is sustainable. It feels a bit unprofessional to just create payment links and then sending over email
If you already have a customer object in Stripe, then you should use Checkout Session, which requires some integration work but is more flexible.
ok
but it is not a simple API call right?
I know the product that they are paying for, I know the quantity and the amount and the payment method
the only thing I am missing is the bank/credit card information
but it is not a simple API call right?
Have you read the documentation I shared? It's an API call to create the Checkout Session, then it gives you a URL that you redirect your customers to, they fill their payment details and it whoudl work.