#jairo094215_docs
1 messages ยท Page 1 of 1 (latest)
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.
- jairo094215_docs, 3 days ago, 7 messages
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! We typically respond in a few minutes, but in some cases we might need a bit more time (e.g., server's busy, you've got a complex question, etc.).
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can 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/1249963750241603626
๐ Have more to share? Add details, code, screenshots, videos, etc. below.
You can choose "Customer chooses price" when you create a Price object
But I need to fix that price from our side (backend) using the Invoice's amount, and the customer should not be able to change that amount.
With this option the customer can change this amount? The documentation says that the customer chooses the desired price to pay, similar to a donation/tip system
Ah I see. So you meant the custom amount is from your backend
Yes then you would need to create a Price for it, to start generating PaymentLink. It's a constraints, sorry
Ok, I understand, but isn't that a little crazy? Because we've thousands clients with thousands invoices, then creating a dedicated price for each invoice could generate millions of prices in our Stripe account over time
Could these prices be automatically removed when payment is completed?
If not, could we use Stripe Checkout for this purpose? Is possible to set a dynamic amount without creating a price?
It's exactly as you observed. PaymentLink is for a Price as a common object that you can share to thousands different customers.
Here you have different amounts for each customer, you would want to create CheckoutSession for them instead. Each person will have 1 Checkout Session
Ok, then we have 2 questions about Stripe Checkout:
- What's the duration of the checkout session's link after it's generated?
- Does each payment generate an Stripe Invoice, or just a PaymentIntent?
- 24 hours, can be shorter
- Just a Payment