#jihen-capture
1 messages · Page 1 of 1 (latest)
Hi there, most certainly, Stripe can perform authorisation, capture the fund and cancel it when money has been received, for more information please refer to https://stripe.com/docs/payments/capture-later
I'm using a multi vendor plateform and I want that this money will be blocked for each seller and not blocked for me
is it possible ?
I was wondering if I could confirm with you to make sure I understand the question correctly.
You are a platform account with multiple connected accounts, customer make a purchase on the connected accounts, money will be captured only after a certain amount of time depending on the payment method.
You would like to see the pending amount showing only on Connected accounts but your Platform account would see the amount as finalised?
No, this is not the case. Me, as owner of the site, I present only the intermediary between the sellers and the buyers.
Sellers log in, showcase their products, and buyers log in and make a purchase. In this case, I want the seller to only receive these monies after an "X" period of time until the buyer uses the product and claims a return if there is a problem.
Most certainly, please refer to https://stripe.com/docs/connect/manage-payout-schedule
You can set the payout.schedule.delay_days to the amount of days to wait upon a charge in the Connect accounts
Please find the API https://stripe.com/docs/api/accounts/object#account_object-settings-payouts-schedule-delay_days
I was trying to explore and see if there's an easier way to do this in Dashboard, it seems there isn't an easy way there.
Sorry I don't understand how can I use it!
I was wondering if you know how to make a POST request?
Or if you are aware of the curl tool?
or alternatively you could try a tool such as Postman that can allow you to make API requests https://www.postman.com/downloads/
And try to create a request via https://api.stripe.com/v1/accounts/acct_xxx
(you need to update acct_xxx with your account id, you can find it within your https://dashboard.stripe.com/settings/account)
if you use curl, the command can be found: https://stripe.com/docs/api/accounts/update?lang=curl
and replace the example -d "metadata[order_id]"=6735 with:
-d settings[payouts][schedule][delay_days]=7
this is an example if you want the payment to be delayed for 7 days, please feel free to change this number to the number of days you prefer.