#vanessa_22769
1 messages · Page 1 of 1 (latest)
I have an idea of what you can do but want to provide some background here first, not sure if you already know this:
There are two types of balance on your account: pending and available. Right when a charge is created the funds are pending and they become available once the money actually lands at Stripe. Funds need to be available to be transferred to another account
You can use this param to set up a transfer for when the funds actually land https://stripe.com/docs/connect/separate-charges-and-transfers#transfer-availability
so need to call transfer api after payment intent genarate and get charge id from there right
Correct