#gobika_11
1 messages · Page 1 of 1 (latest)
What do you mean by get out? It's a spec. You can always create a new link
If I need to create a new connected account, you will generate a new onboarding link during the account creation process. Each connected account I create will have its own unique onboarding link for completing the onboarding process. If I close the onboarding link without completing the process, I will need to generate a new link when creating a new connected account.
Give me the solution
Is this is the correct way to generate the link when create the connected account?
Yes, you can always generate a new link if the old link is expired
Is there connected account will create multiple times in stripe?
No, still the same account
OK thanks
const paymentIntent = await stripe.paymentIntents.create({
amount: 1000,
currency: 'usd',
automatic_payment_methods: {
enabled: true,
},
application_fee_amount: 123,
transfer_data: {
destination: '{{CONNECTED_ACCOUNT_ID}}',
},
});
when the destination charges applied, destination charge + application fee sent to platform account right? balance remaining amount will send to connected account right ? or else shall I mention how much amount transfer to connected account ?