#asadullah-bt

1 messages · Page 1 of 1 (latest)

hollow adder
#

@winged veldt I can try! What's the question?

winged veldt
#

I am implementing the "balance transaction" API. Previously you have suggested I read the document on "Balance Transaction types". There I can instantiate a class called "BalanceTransaction", which has properties called Amount, Fee, Net, each asked in %age. How can I utilize this "BalanceTransaction" object?

hollow adder
#

not sure what you mean

winged veldt
#

May I send screenshot?

#

And please let me know whether you are a developer? I want to see the payout fee being deducted, which is 0.25% + 25 cents, being displayed in payments tab of stripe dashboard.

sharp fog
#

If screenshots will help us understand your question, then please feel free to provide them.

winged veldt
#

Alright @sharp fog , thank you.

#

This is the balance transaction class. It has three properties, Amount, Fee & Net. It says that the values are to be kept in %age. How am I supposed to utilize this class? My scenario is a Connected Account, express type with destination charges using manual payout.

hollow adder
#

you wouldn't create a BalanceTransaction(you never call new BalanceTransaction)

#

they exist in the API. You retrieve them. When something happens on an account that changes its balance, Stripe creates a BalanceTransaction object. You can then call the API(https://stripe.com/docs/api/balance_transactions/list) to retrieve and list them when building a report for yourself.

winged veldt
#

Alright. I have checked the APIs. It is showing me the amount, fee & net for the charge, which is the stripe processing fee. Can I do something so that I may be able to see the amount, fee & net values for the payout from the connected user to an external bank account?

hollow adder
#

as I mentioned it's charged monthly (there will be a separate BalanceTransaction for it)

#

you can't test it in test mode unfortunately!

#

the way it works is once a month we sum up all the fees for the payouts in that period and then there will be a BalanceTransaction created on your platform account for the total amount of the fee

winged veldt
#

So it is an automatic process, just like a stripe process fee deduction, right?

hollow adder
#

yes, we just deduct it automatically each month

winged veldt
#

So being a developer, I'll just have to manage the flow of funds and adjust the application fee amount only.

hollow adder
#

yes you should set it up so that the application fee you take on payments covers any profit you want to make, taking into account that you'll have these additional Stripe fees taken on a monthly basis overall