#lifeofnitz
1 messages · Page 1 of 1 (latest)
You're referring to that text below "CONFIRM TRANSFER" right? The part that says take out any transaction fees from this amount"
Yes.
I believe the Transfers API does that by default - the amount you specify is how much is being taken from the platform, then fees are taken, and some portion of the amount will land in the connect account balance
Hmm interesting. Ok thank you.
One more question. If I wanted to trigger a webhook whenever the balance of a connect account changes what event would I listen for?
You can listen for the balance.available event (https://stripe.com/docs/api/events/types#event_types-balance.available) but that'll only trigger when you available balance has increased (so it wouldn't have all balance changes)
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Amazing. Was searching for account/balance and didn't see that event. Thanks.