#SamZ
1 messages · Page 1 of 1 (latest)
Yes, you'll want a separate connect account for each user of yours that you want to pay out
Custom connect accounts don't have access to any kind of dashboard that shows payments like this so you will have to implement one. You can build one from scratch or we have a pre-built UI element for this https://stripe.com/docs/connect/get-started-connect-embedded-components
Hey thx for the quick answer.
I don't need a dashborard just if there is an API route to retrieve balance ?
Yep, there is one for listing them https://stripe.com/docs/api/balance_transactions/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
But that's the balance of the stripe account not the connected account balance, no ?
You can make the call as the connected account 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.
Could you explain to me how to do so? Because i don't see a way to call the api with a connected account id
What client library are you using?
That stripeAccount header is a parameter that works on any API call. You make the list balance transaction call as normal and add the header the way that the second link that I sent to shows for your client library
Flutter client side, and Node server side
currency: 'usd',
{ stripeAccount: 'acct_1JCsS9Jmquaq3Lbp' }
});```