#tomato-balance-available
1 messages · Page 1 of 1 (latest)
yes, as you mentioned, you will need to listen to balance.available event.
you can list the balance transactions using the available date https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-available_on
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
that will return balance transactions that become available that time that could be tied to the charges
So, only by date?
Could u explain what is it source https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-source
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
source is the object e.g. charge, refund, fees that cause the balance change
in your case, that will be the charge you are interested in
Good, thank u!