#MasterJungJung-checkout
1 messages · Page 1 of 1 (latest)
Hello! What is your goal here? To have a single Checkout Session that charges for a subscription and one-time item at the same time?
yes exactly. Just the user doesn't have to go through multiple checkout sessions back to back.
Gotcha, so you can just specify all of them in line_items (https://stripe.com/docs/api/checkout/sessions/create#create_checkout_session-line_items) and we'll do the correct thing and group everything into one payment
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
oh i see. I completely missed that line_items was an array. Thank you!