#oleg.d
1 messages · Page 1 of 1 (latest)
Hi, to confirm, you have a Connected Account that you'd like to send payouts to. You're trying to figure out how you'd achieve this with Instant Payouts?
If this is correct, you can create Instant Payouts: https://stripe.com/docs/api/payouts/create by passing the method and destination parameters on the creation request.
To workaround the limit of 10 Instance Payouts, https://stripe.com/docs/payouts/instant-payouts#eligibility-and-daily-volume-limits I would recommend that you group payments instead and have a larger payout sum. There is also a daily volume so you'd want to see what that is via your Dashboard as shown in the above documentation.
This process involves multiple connected accounts in my application. I want to initiate an instant payout each time a user's connected account receives money. For example, when Customer1 sends $10 to Customer2's connected account, Customer2's connected account would receive $6.8 (minus Stripe commission), and I need to immediately trigger an instant payout for this $6.8.
Yeah, you'd want to group these so you stay under the 10 limit per day.
Thank you