#vitorleitao_docs
1 messages ยท Page 1 of 1 (latest)
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- vitorleitao_docs, 2 days ago, 24 messages
- vitorleitao_docs, 3 days ago, 17 messages
๐ 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/1262333269014351875
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
๐ happy to help
Perfect, let me give this a go
Would you happen to also have the docs on how I can get all fees and network costs / charges for Payouts?
you need to first get the charges for that payout https://docs.stripe.com/expand/use-cases#charges-in-payout and then add the fees from the first link I sent you
so you need to combine the two use-cases
Cool, I will try this now as well, and see if I gives me the results I need.
Thanks
let me know if you need any more help
@charred hamlet I do have a small issue, which I remember I spoke on a different thread
My payouts and transfers are done manually (in code but are considered manual) so the example always throws the "Balance transaction history can only be filtered on automatic transfers, not manual"
Do I have a way of fetching the charges for these payouts which are triggered via our code to connected accounts?
oh unfortunately what I've sent you only works with automatic payouts
when you do manual payouts you're just passing the amount that you want to payout
so no link between the payout and the charges is done
Ok, so let me explain a bit the issue, maybe that will help
you can add metadata to the payout while you're creating it to add the charge IDs but you would have to fetch those as well ahead of creating the payout
I've retrieved all of our payments (via the payment intent ids) in a currrency, all fees (via the API), disputes, refunds, payouts, etc and there is some money missing from the balance based off the maths we performed
Stripe Support says these are extra stripe fees and network costs, but fetching the data from the PaymentIntents, using the documentation you sent, did not yeld any different results from what I already had, so I am assuming these extra charges have to be on the payouts, or there is an issue with the PaymentIntent query I am performing
Any idea how I can see what exactly is removing money from our balance?
you could list BalanceTransactions, which is the same information as on https://dashboard.stripe.com/test/balance
and yes certain fees are just levied as adjustments to your balance by creating BalanceTransaction objects, like the Connect/Billing usage fees
Would you be able to point me to the API/docs that will help me list that balance?
Maybe that will shed some light on my end
ohh, I think I see some network charges there
Let me dig a bit deeper into that screen, because on our end, I do not see that information in any of the transactions or payouts when using the UI
also I assume you're on IC plus pricing since you talk about network costs?
I am honest, I am not sure, since I have not created our stripe account and the integration was added way before I joined
So I am just trying to find out what is happening, since the values do not match to what we expect but I do see a ton of charges like
3D Secure: Lookup
Radar: Standard etc
or Transaction network costs
Are these on individual payments or are these tallied up and charged on a period?
sounds like you're on IC pricing to me
can you see this link https://docs.stripe.com/reports/activity ?
Cool, I'll look at that, since it may be what we are missing in this whole debacle to be honest
if you're on IC pricing there are no fee_details in the BalanceTransaction object, and instead fees are processed a few days later and you get reports about them, you don't really use the API, you use the reports
to confirm, you can see that link I shared, is it a 404 or does it work for you? (you need to be logged into your Stripe account when visiting the link)
The link seems to work for me just fine
I will download all the activity for the currency and sum up all these fees to see if they add up to what we expect, but I suspect this may just be what we were missing
cool, sounds good then, I agree that's probably the missing part
Yeah, this is 100% what was missing
Adding all the values up, it matches to the cent to the value on the balance
I will investigate this now to make compare with the all our payouts and fees, but I think you just pointed me to absolutely the right place