#lkjhgfdsa-payments
1 messages · Page 1 of 1 (latest)
Hi, have you considered using webhooks to get the data in real-time instead of getting the data at the end of the day?
No I hadn't. That's an interesting idea. I would like to assess historical data but I can do that from a static extract.
let me know if you need any more help
Just confirming you're saying that these network fees are not retrievable via the API, just via dashboard reports?
The issue I have with webhooks is volume - we have a Zuora billing system which does payment runs at large blocks at a time and so our webhook receiver would need to scale equally. Basically my ultimate goal is to have a realtime dashboard of how much money we are paying on failed payments, as these are not a cost of sale, and so we want to optimise this cost upstream by not making payment attempts after hard card failures.
You can actually query your charges expanding on the balance transaction which would give you all the details you need.
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
where is your platform based?
you can also use the list https://stripe.com/docs/api/charges/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
My platform is in the UK
ok
Ah yes, is the data within the balance_transaction that I need
https://stripe.com/docs/api/balance_transactions/list
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.