#NotP_Dot
1 messages · Page 1 of 1 (latest)
Hi there. This can be accomplished with an invoice item: https://support.stripe.com/questions/add-a-one-time-fee-or-discount-with-a-new-subscription-plan
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.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Yeah for the subscription I am already doing by using add_invoice_items on stripe.Subscription.create since the subscription method has a fee. Maybe this will help
cart :
product 1 - pay via a subscription that includes a 1 time fee for the first month
product 2 - pay via a one time payment
If you have to do this in 1 go then product 2 would also have to be an invoice item
Otherwise, you would have to represent them separately in the Stripe API with a PaymentIntent as the 1-time payment and the Subscription separately
right that was my thinking. Up to how many invoices can I add on a subscription?
in the add_invoice_items
Ah ok so you mean how many invoice items per 1 subscription invoice?
yeah, since product 1 has a fee, and product 2 is a different product that requires a 1 time fee
If it's in the create subscription endpoint, then 20: https://stripe.com/docs/api/subscriptions/create#create_subscription-add_invoice_items
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Tells you in the docs
in total 3 charges need to happen, 1 for subscription, 1 for the subscription fee, and 1 or multiple for the additional one time products purchased
Yeah that would be no problem