#thai-huynh_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/1313576676755771422
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
Hello! There are many ways to do this. The best one depends on your specific use case, business needs, etc.
i'll explain a bit more
one of our client runs a pickleball league ... they basically charge the player a $50 down payment. Once this player is confirmed that we're elligible to play in this league, they client will charge the remaining balance
we already have this registration flow in place but it takes the entire amount
also, the customer for this current flow is setup as a Guest so there's no way to charge them additional later
we cant put a hold on the remaining since we dont know how long the vetting process it
It sounds like you want to follow this guide: https://docs.stripe.com/payments/save-during-payment
You'll need to create a Customer object in Stripe to represent the person, but that doesn't mean you need to use that Customer beyond the two payments you mention.
This is the specific version of that guide for Stripe Checkout: https://docs.stripe.com/payments/save-during-payment?platform=web&ui=stripe-hosted
Give that a try and let us know if you have any questions.