#romain_api
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/1326934313689813023
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Thanks. Without Stripe Checkout, it's not possible?
Without checkout, really the only way would be to create an invoice and then mark it paid out of band: https://support.stripe.com/questions/marking-an-invoice-paid-out-of-band
you mean mark it paid out of band before the customer has paid?
The issue is that in France, we are not allowed to issue an invoice that hasn't been paid. So, when a user doesn't pay an invoice or cancels before paying, we are left with an unpaid invoice that will never be settled. This is what I would like to avoid.
And you mean the only solution for us is to use Stripe Checkout? We can't continue using the raw Stripe API ?
You can use the raw stripe api
What i mean is that the customer would need to pay through another means (ie payment element)
Then you can create an invoice after the fact and mark it paid out of band
OK, so in the Stripe interface, I would have an "isolated payment" and an "isolated invoice," not linked together.
And the only way to link these two elements, while ensuring that the invoice is created only if the payment is successful, is by using Stripe Checkout.
Is that correct?
Yes, unfortunately