#twafiq_webhooks
1 messages ¡ Page 1 of 1 (latest)
đ Welcome to your new thread!
â˛ď¸ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
âąď¸ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
đ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1430012406876082308
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hello, give me a moment to catch up
Hmmm..I don't think events are emitted when fees are charged. This applies to charge fees as well
with the exception to application.fee because these fees are set by Platform accounts
So how can I find how much I am being charged every month for my connected accounts' payout
I would like to do it programmatically as opposed to having to estimate on my end
and just get it from stripe api
The info is probably in a balance transaction right?
Yes I would think so. You may need to query balance transactions if you want to do it programmatically. Otherwise Stripe users usually reconcile against reports. For example: https://docs.stripe.com/reports/all-fees
You may want to try listing balance transaction related to stripe_fee: https://docs.stripe.com/api/balance_transactions/list
Yes, there isn't a specific type for payout fees
How will I be able to discern which one is a payout fee and which one is a processing fee on a charge?
Reconciling using reports would be the clearest and most direct approach because fees are attribute to the Stripe product its incurred from
Can you explain how to do that programmatically?
Do you mean reconciling using reports programmatically? What I meant was retrieving the reports programmatically [0].