#mzzay
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- mzzay, 3 days ago, 12 messages
Hi there!
And they are not registered as product on stripe
Hi !
To get a Stripe hosted payment page, you should probably use Checkout Session, where you can synamically set the price.
And note that you don't have to use Product/Price objects if you use price_data: https://stripe.com/docs/api/checkout/sessions/create?lang=node#create_checkout_session-line_items-price_data
Oh really ? I tried 1 month ago for another project and I wasn't able to set the price without product. I' ll investigate on it
The way it works is you don't create any Price or Product in Stripe. Instead when you create the Checkout Session you set line_items.price_data with all the information needed (price, currency, product name, etc.)
Oh ok ! I'm going to try! Thanks