#BTait
1 messages · Page 1 of 1 (latest)
It looks like that page is working with something like our list balance transactions call https://stripe.com/docs/api/balance_transactions/list
You can tell what type of transaction it is by checking the type property and see the actual object it came from by checking its source property https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-type
https://stripe.com/docs/api/balance_transactions/object#balance_transaction_object-source
thanks @proud python I'll try that endpoint
@proud python - I can see the data now, but I'm confused about a few things. The data.amount column has values in it that are much larger than any of our typical transactions (regardless of transactions type). I think it may correspond to the balance in the account rather than the transaction amount? Is that right?
This is the data that that is in the export from this page
I'll do an export myself and check. One minute...
ahhh, I see the issue. This is so strange
The decimal isn't being included in the "amount"
so when pulling the data, I am getting 60,000, when it is actually 600.00
Yes, our amounts are stored as integers and usually in increments of something like a cent https://stripe.com/docs/currencies#zero-decimal
Ahhhh, got it.