#kiv_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/1310949537191563267
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- kiv_api, 17 hours ago, 5 messages
Screenshot of the report generated by the dashboard (see that it contains the customer_email correctly)
Screenshot of the report generated by the API, which I passed in the columns property the prop costumer_email, and even though, it doesn't appear in the final report.
What's the ch_xxx ID?
ch_3QPDmtHOzdvO2py10zhJaVp0
I suspect they probably map to different fields. What's the exact report type you're running via the API and which Dashboard URL are you exporting that data from?
For example, the billing_details[email] is set on that Charge object: https://docs.stripe.com/api/charges/object#charge_object-billing_details-email
Which is probably the field you get via the Dashboard export
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
I'm running a balance_change_from_activity.itemized.1 via API.
I'm exporting the data from https://dashboard.stripe.com/payments
I'm passing the customer_email as a parameter like so:
Sign in to the Stripe Dashboard to manage business payments and operations in your account. Manage payments and refunds, respond to disputes and more.
I wonder how could I pass this "billing_details[email]" to the balance_change_from_activity.itemized.1 API type
Or something like that
All that I need is a way to download the report via API, but it has to contain the costumer_email correctly
Can you share the req_xxx ID of the request you're making?
frr_1QPO7IHOzdvO2py1dCUONjxv
That's not a supported field: https://docs.stripe.com/reports/report-types/balance#schema-balance-change-from-activity-itemized-1
I would think that customer_email in that case probably maps to the Customer object (when used), but you're not using them
So I guess that you can't get that directly
So there's no way to download via API the same report generated by https://dashboard.stripe.com/payments ?
All the reports that the API generates are different from this one ๐ฆ
Well that's not really a report but just a raw export of the payment data
So no there's no direct representation of that in the API
I'm working on a financial report automatization, I'd need to get this dynamically, without much effort... I know that I can't use things like Selenium to get the "raw export of the payment data" due to Stripe's Two-Step Verification.
And now, I can't get this directly from the API.
Maybe it can be a future implementation? I'm sure that it'd be of great help