#theis_api
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/1265973294906081351
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi! https://docs.stripe.com/expand/use-cases#stripe-fee-for-payment for instance.
Heya! That claims the fee is 0. Which doesn't sound right
maybe you're not on sticker pricing and are on IC pricing?
do you have an example of a charge ID where the fee was 0?
sounds likely, ch_3Pccd6KbCokAm4MR0nJW6GQD
yes you're on IC pricing, which means the fee is not reported in the API, you want to look at https://docs.stripe.com/reports/activity to see how to generate reports for it.
so no endpoints to get this data?
you can call the API to generate and download reports
but report still bundles fees into lump sums, is there no way to see what each individual transaction fee was?
should be, the docs talk about a itemized report with a transaction-level fee breakdown so make sure that's the report you're downloading, not the Summary
that's the one
thanks!
if i can make a request it would be a way for that to be accesible via an api endpoint
that doesn't include downloading a report
yeah unfortunately it's not easy to put in the API because the fee is not known at the time the BalanceTransaction is created(because it depends on stuff like the interchange reporting and true-ups and is overall async) and there's no pipeline to backfill this kind of thing into the BalanceTransaction. Overall we do want people to use reports for this stuff more often since it's more reliable and stable to scale the systems than making everything available live in the API, so we're kind of going in the opposite direction.
totally get you on that
does that mean that theses reports wont change after being generated?
i.e the fee can't change on your end