#espagnol01

1 messages · Page 1 of 1 (latest)

nova lagoonBOT
night tundra
#

I can try, what's the context?

narrow hollow
#

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

night tundra
#

invoices use different settings unfortunately

#

you have to enable the payment methods there

narrow hollow
#

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

night tundra
#

yeah we might not support BACS in the hosted invoice page, let me look

narrow hollow
#

oh no

#

this is a huge problem

#

what are the alternatives?

night tundra
#

let me checking something though

#

for context are you using Subscriptions or creating the invoices as one-offs?

narrow hollow
#

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.

night tundra
#

hmm.

narrow hollow
#

so i have both use cases

night tundra
narrow hollow
#

ok

night tundra
#

for whatever reason it's not supported for one-time invoices

narrow hollow
#

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?

night tundra
#

my suggestion would be to use Checkout, it supports ~all payment methods in both mode:payment for one time, and mode:subscription for recurring

night tundra
narrow hollow
#

bacs is not showing up on the subscription invoice

night tundra
#

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

narrow hollow
#

oh, ok. So, basically a subscription can also be an invoice

night tundra
#

a subscription is just a process for creating invoices on a recurring basis yep

narrow hollow
#

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?

terse gust
#

Hi! I'm taking over this thread.

narrow hollow
#

Hi Soma, thank you

terse gust
#

So your goal is to create a subscription that the customer will pay with BACS?

narrow hollow
#

exactly

#

and the previous agent recommended to use Payment Intent

#

is this correct?

terse gust
narrow hollow
#

i dont need a webshop for this right?

terse gust
#

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?

narrow hollow
#

can i give you a little bit of context?

terse gust
#

Sure!

narrow hollow
#

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

terse gust
#

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)

narrow hollow
#

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?

terse gust
#

is it attach to a customer?
Payment Links will create new customer objects in Stripe

narrow hollow
#

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

terse gust
#

If you already have a customer object in Stripe, then you should use Checkout Session, which requires some integration work but is more flexible.

narrow hollow
#

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

terse gust
#

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.