#vell2x_best-practices
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/1367910100941148263
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hi! So you take a $100 deposit, and then charge the balance of usage at the end of the rental period, right?
The simplest way to do that would be to just create two payments - one for each - and you can read about doing that here: https://docs.stripe.com/payments/accept-a-payment?platform=android
can we create the second from stripe dashboard? Or how should the second charge be made, because we don't know if it will be necessary
What do you mean you won't know if it will be necessary?
So if the customer doesnt need extra days or miles the charge will be 0.00
Is the minimum charge $100? Or might they get some of that back?
minimum is 100 dollars
Ok cool. If you're going to charge them again later, you'll need to save the payment method when they do the first charge.
That sounds simple enough. My last question is regarding how to update the charge later.
Am I able to do it in the dashboard or will i have to set something up in the app to adjust the charge?
You shouldn't need to update the initial charge of $100. Instead, I'd recommend creating a new charge for the additional amount: https://docs.stripe.com/payments/save-during-payment#charge-saved-payment-method
ok and for example lets say there is an additional 25 dollar charge. Can I retrieve the customers payment and bill them from the dashboard or how would that scenario work?
Are you using API for your integration? If so, the guide shows how to retrieve the saved payment methods and charge to the customer with a new Payment Intent
Ok thank you that is all my questions for now