#vrk18
1 messages · Page 1 of 1 (latest)
Balances Retrieval API can be used with Stripe-Account header as connected account ID:
- Balance Retrieval API: https://stripe.com/docs/api/balance/balance_retrieve
Stripe-Accountheader: https://stripe.com/docs/api/connected-accounts
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I am getting this response, if the users are making payments with different cards, do we get more elements in the available array ?
The balance here is the total account balance of the connected account. Any new payment irregardless with the card used will be added to the amount field
so, connectedAccountBalance.Available[0].Amount is always be the balance of the connected account, though different types of source_types available ?
The array is different by currency, not the source_types
Alright thanks
No problem! Happy to help 😄
I am doing the destination charges, I am checking the available balance of the connected account before doing the refund and also using the ReverseTransfer = true
is it the correct way of doing it ?
Yup! That is right
Thanks River