#lukro_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/1233351835960606790
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there!
you could place a hold: https://docs.stripe.com/payments/place-a-hold-on-a-payment-method
I've tried it, but it only reserves funds on the customer's card only when confirmed, no?
correct
I'm trying to make it so 1. Reserves funds on a customer's card 2. Provides some value. 3. if needed Reserves more funds and provides more value. 4. Capture the total amount
But if i confirm the paymentIntent, it wont let me update the amount
Any suggestions, what could I try?
you can place a hold for $100. then later when you capture the funds, you can capture a lower amount (but not a higher amount, that's not possible).
Any other ways? I'm afraid it could jumpscare a customer ๐
no that's the two only options: place a hold, or save the card for later.
What about, creating multiple paymentIntents: if additional value is needed, Cancel the old confirmed paymentIntent and create a new one with a larger amount and confirm it and so on?
sure, but when you create the new PaymentIntent with the new amount, there's no guarantee it will work. it can take a few days for cancelling a hold to be taken into account with banks.
What about: create multiple holds, and capture it all later? Is there a way to capture multiple holds?