#pedrox_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/1272936588598579301
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Stripe\Reporting\ReportRun Object
(
[id] => frr_1Pn53ZEkjq0c6YpviOxaASzz
[object] => reporting.report_run
[created] => 1723495293
[error] =>
[livemode] => 1
[parameters] => Stripe\StripeObject Object
(
[columns] => Array
(
[0] => balance_transaction_id
[1] => created
[2] => currency
[3] => gross
[4] => fee
[5] => net
[6] => reporting_category
[7] => source_id
[8] => description
[9] => customer_facing_amount
[10] => customer_facing_currency
[11] => automatic_payout_id
[12] => automatic_payout_effective_at
[13] => customer_email
[14] => customer_name
[15] => charge_id
[16] => payment_intent_id
[17] => payment_method_type
[18] => card_country
[19] => payment_metadata[hash]
[20] => payment_metadata[id]
[21] => payment_metadata[type]
)
[interval_end] => 1723413599
[interval_start] => 1722463200
)
[report_type] => payout_reconciliation.itemized.5
[result] => Stripe\File Object
(
....
)
[interval_end] => 1723413599
[interval_start] => 1722463200
=> should be in range: 1st of August - 11th of August
returned data are from July
We don't know much about reporting in here, so if you have follow-up questions, you'll need to ask our support team: https://support.stripe.com/contact. But, it looks like for that report type, interval_start and interval_end refer to the balance transactions' available_on dates, not their created dates
Thank you for your answer
Do you know which attribute relates to the balance transaction date for filtering?
I tried to first collect transactions by webhooks, but in the webhook data container is no info about the fee. So this is why I start browsing report API.
When I generate CSV report in the Stripe dashboard, I can choose the date range which is considered as balance_transaction_at
But I did not find info how to filter by balance_transaction_at in repot API
Idk about reporting, you'll need to ask our support team if you have further questions on that. However, you can just use the List all balance transactions api endpoint to filter them by created date: https://docs.stripe.com/api/balance_transactions/list#balance_transaction_list-created
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.