#stripe_connect_platform
1 messages · Page 1 of 1 (latest)
Hi, I wish I could help, but this chat is focused on developers and technical questions. Our support team will be able to assist you better than I can: https://support.stripe.com/contact
I see you edited the question.
I am a dev
The screenshot and the initial question sounded like a non technical question. Taking a look with the added context
I am asking...."via the Stripe Payment Link API how do you create a Stripe Payment Link that takes a deposit?"
is that something that is possible?
I know. I am bubbling up the non-technical customer's question to translate up to you as a dev to see how we can code this. 🙂
How long do you intend to hold the 'deposit'?
it is not me.
Well your connected account
it is on the behalf of a Stripe Connect account so it would vary, right? I would have to ask. We have many connect accounts so if you can explain it to me or send me to docs that would help.
If it's within 7 days, then you'd be looking at Auth and Capture: https://stripe.com/docs/payments/place-a-hold-on-a-payment-method
You authorize the amount and only capture the amount needed within 7 days. Any amount not capture would be refunded back to the customer
Partially capturing automatically releases the un-captured remaining amount
Ok and is this something we can do with Payment Links or just with Stripe Checkout Sessions.
It looks to me like a Payment Intent so likely not available with Payment Links, right?
No, it won't work with Checkout or Payment Links
It won't work with a Checkout Session???
Sorry, because it needs to be a direct API call to create a Payment Intent, is that why? I'm just trying to figure out if we can support this use case.
That is right, the manual capture option is only available when you create the Payment Intent.
OK, thank you so much! I understand.