#AdamTheDeveloper - send receipt API
1 messages · Page 1 of 1 (latest)
Hi,
Unfortunately, no you can't resend receipt using API, You can do it just from dashboard
Ok never mind. Thanks anyway!
RE: Balance transactions https://stripe.com/docs/api/balance_transactions/list
We are building our transaction statements, and similar to a real bank statement, we were hoping to add a running total (balance column) to our statement. Is there a way from a "balance transaction" to understand the current balance at that point in time? We could add it up ourselves on each page we pull from the API, but it limits 100 per page, so we'd not be able to accomplish this.
Attached is an example. We are looking to make the right-most column (ignore the fact the numbers aren't right at the moment).
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Stripe uses pagination for list retrieval API: https://stripe.com/docs/api/pagination
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
You can use auto-pagination provided by the library to iterate whole list: https://stripe.com/docs/api/pagination/auto
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
However, I'd recommend to store the balance transaction history on your own database, so that you don't have to call Stripe API everytime