#rafadel_connect-funds-flows
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/1267501957170335885
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
The issue here is that the PI has transitioned immediately to requires_capture as you passed confirm: true: https://dashboard.stripe.com/test/logs/req_VquGjtwmRs4tjr
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
Updates like that need to happen pre-confirmation
Will an unconfirmed PaymentIntent put a hold on the user's card for the amount specified?
Hi ๐
My colleague had to go so I'm stepping in.
No, an unconfirmed Payment Intent will not place a hold on a Customer's card. What is it you are trying to achieve?
Thanks, we have a product that's a 2 way market place where 1 user does a service for another user and we facilitate the transaction between the 2 parties.
When a request is made for a service, we like to authorize the user's card and put a hold for the amount the service will cost them. At this point we do not know who the user that will be providing the service is. So we want to update the transfer data to this provider once we've established who's doing the job.
Today, we only authorize the user's card once we have the provider, but this sometimes causes payments failures where we'd like to address them at the beginning of the service request.
okay so that won't work. Once a Payment Intent is confirmed you cannto change the Transfer destination
Well, it won't work with Destination charges
You could use a Separate Charge and Transfers funds flow
where you create the Transfer yourself.
I appreciate it, I'll take a look at that doc!
That would allow this flow. You could create the hold on the Customers card and later capture the funds like we show here
https://docs.stripe.com/payments/place-a-hold-on-a-payment-method
Then, you would create a Transfer to the Connected Account when you capture the funds so the person doing the work is paid for it
Gotcha! Thanks again!
I'm happy to shed what ๐ก I can ๐