#Jeffrey
1 messages ยท Page 1 of 1 (latest)
Hello ๐
Stripe subscriptions use invoicing for billing, so unfortunately you can't disable invoice creation.
Sorry the server is running busy at the moment
When you say your tools create an invoice by itself, is it charging the users too? OR for charging you rely on Stripe subscription billing engine?
atm we reply on Stripe subscription billing engine
Gotcha. then you can't really disable invoices on Stripe as you need it to charge the customers.
If you had your own billing engine that charges the customers then you could mark the invoices as void on Stripe.
How can we switch to "own billing engine" ?
You build your own logic to charge customers on a regular interval
thank you, what API Entpoint is for creating an manuel payment?
ok so we would need to collect the payment methode into the customer and then build a billing engine that charges the customer month with payment intents
Pretty much, yeah
if I unterstand the payment_intents correct its not able to access products right?
That's correct
Thx I found this https://stripe.com/docs/payments/accept-a-payment-deferred
the only thing that I am currently missing how do I tell the hosted input field for with customer_id inside stripe it is
๐ stepping in
Not sure I understand exactly what you are asking
Are you stating how do you associate a PaymentIntent to a Customer?
yes
You pass the Customer ID to the customer parameter when you create the PaymentIntent: https://stripe.com/docs/api/payment_intents/create#create_payment_intent-customer
ok and how can I then pass the paymentintent into the form? https://stripe.com/docs/payments/accept-a-payment-deferred
Yep