#acardillo_subscription-oneoff-prices
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1268992090147393556
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
I'm wondering if I can just use a payment intent with the right amount and then start a subscription where the first payment is skipped somehow?
Hi ๐
we have an easier solution for that. Stripe Checkout let's you mix one-off and subscription prices. we describe how to do this here:
https://docs.stripe.com/payments/checkout/how-checkout-works#mixed
I am using Stripe Elements at the moment? is there a way to do this with that product?
In that case you would want to add the one-off items to your Subscription as single invoice items. These will only show up on the first Invoice and so the amount will only be included on the initial payment. You can add these using the add_invoice_items parameter.
https://docs.stripe.com/api/subscriptions/create#create_subscription-add_invoice_items
Apologies. When you said "checkout" I thought you meant Checkout (the Stripe product)
no worries! I realized after that wasnt the most clear way to say it haha
That looks like what i'm after thank you!
Perfect!