#slowgen-transactions-express
1 messages · Page 1 of 1 (latest)
Hi there! You are looking to retrieve the balance transactions on your Express accounts?
yes i think so
Gotcha. So you can list the balance transactions via the API using https://stripe.com/docs/api/balance_transactions/list and passing the Stripe Account header of the account you want to list transactions for (see: https://stripe.com/docs/connect/authentication) or you can look into our Connect Reports from our Reporting API: https://stripe.com/docs/reports/report-types#connect
Complete reference documentation for the Stripe API. Includes code snippets and examples for our Python, Java, PHP, Node.js, Go, Ruby, and .NET libraries.
Lastly, you could use Sigma to write a SQL query if you have Sigma enabled on your account.
Cheers, using the connect reports is it possible to get transaction between dates for a specific account?
Yep
would you kindly show me the api docs for this
Hi using this with a connected account how can I get more than 100 transactions? 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.
You will need to paginate: https://stripe.com/docs/api/pagination
No the limit property still applies. You likely want to just use auto-pagination to make this easy. See: 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.
do I omit the limit then? But it says default limit is 10
You likely still want to set the limit to 100 so that you have the least amount of requests
OK, I get more than 100 results with auto pagination if I leave the 100 limit. So assuming it's somehow ignored
well autopagination will fetch 100 items (per page) in each request, then iterate over them, then fetch the next 100 and so on