#NotP_Dot

1 messages · Page 1 of 1 (latest)

delicate coralBOT
wintry kernel
sage ingot
#

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

wintry kernel
#

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

sage ingot
#

right that was my thinking. Up to how many invoices can I add on a subscription?

#

in the add_invoice_items

wintry kernel
#

Ah ok so you mean how many invoice items per 1 subscription invoice?

sage ingot
#

yeah, since product 1 has a fee, and product 2 is a different product that requires a 1 time fee

wintry kernel
#

Tells you in the docs

sage ingot
#

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

wintry kernel
#

Yeah that would be no problem

sage ingot
#

got it.

#

thank you for clearing that up