#Sofien-sub-one-time-fee
1 messages ยท Page 1 of 1 (latest)
This thread has been archived. If you need help with anything else please ask in #dev-help or contact Stripe Support: 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.
Hi @signal rose, reopening this.
Do you want your customers to immediately be charged for these additional payments?
If not, you can create Invoice Items for the Customer that will be pulled into the next invoice that is generated for that customer.
https://stripe.com/docs/api/invoiceitems/create
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Thank you for your reply ๐
The next Invoice is the Invoice of the subscription (monthly billing) in may case ? is it correct ?
It's whatever the next invoice is. If you want the Invoice Item to be put on an invoice for a specific subscription, then you can leverage the subscription parameter to control that behavior:
https://stripe.com/docs/api/invoiceitems/create#create_invoiceitem-subscription
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
For your question : Do you want your customers to immediately be charged for these additional payments?
R: I dont know if we will need this, but is it possible ?
Thank you very much ๐
You could build a flow for this, yes, but it would essentially just be a one-time payment flow which is pretty different from the approach I recommended, so just wanted to make sure I was pointing you in the right direction.