#saucisse_dev
1 messages · Page 1 of 1 (latest)
Hi
What you can do is to create a PaymentIntent and save the PaymentMethod for future usage:
https://stripe.com/docs/payments/save-during-payment
And then reuse that payment for a Subscription
But first you are willing to use Stripe Checkout or Stripe Element ?
So yes in that case you can follow the guide I shared with you
What I would like to do :
- Create an invoice who contain subscription, and custom product (who don't exists in Stripe)
If I do that, there will be 3 invoices
2*
And the fees will be higher than with one payment
In that case you can create a Subscirption and add other invoice_items (other products) via this attribute:
https://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items
Yes but I don't what to create a Price in Stripe for every item I have in my shop
Is there a solution to pass an array of custom items without create it in Stripe ?
But you have at least to create a Product. You can have a Shop generci Product Object and use it for all prices
Okay I will check this !
Thanks a lot !