#idhruv-payouts
1 messages · Page 1 of 1 (latest)
👋 happy to help
payouts will only happen when scheduled
and the payout speed depends on the country https://stripe.com/docs/payouts#payout-speed
ok
another thing to take into consideration is whether it's a DestinationCharge or a DirectCharge you're creating
Direct Charges automatically puts the PaymentIntent amount in the Connect Account pending balance and then once it is available the payout could happen
actually it has more to do with destination charge
like we would like to collect some fees and put rest in our connected account
while in the case of Destination Charges you could (or not) hold the money for a while before transferring it to the Connect Account
ok
const paymentIntent = await stripe.paymentIntents.create({ amount: 1000, currency: 'eur', application_fee_amount: 123, transfer_data: { destination: '{{CONNECTED_STRIPE_ACCOUNT_ID}}', }, });
Can this work? I need something like this
so, for one-time payment I really dont have to create the schedule and with that i can just transfer rest amount to connected account while charging application fee per transaction customer makes. Is this right choice to address my query?
yes I think so
cool
Hey, taking over here. Let me know if there's any follow-up Qs I can answer!