Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Adds filtering by creation date to Customer Balance Transactions lists


Adds filtering by creation date to Customer Balance Transactions lists

What’s new

You can now filter Customer Balance Transactions by their creation date using the new created parameter when you list transactions.

The parameter supports date range queries using the following operators to specify a date interval: gt (greater than), gte (greater than or equal to), lt (less than), and lte (less than or equal to).

Impact

You can now filter Customer Balance Transactions by their creation date when calling the list endpoint. This provides more granular control over which transactions you retrieve, allowing you to:

  • Retrieve invoice payments created on a specific date by passing a timestamp to the created parameter. For example, specifying ?created=1609459200 filters for transactions created at that exact timestamp.
  • Retrieve invoice payments created before or after a certain date using comparison operators. For example, specifying created[gte]=1609459200 filters for transactions created after January 1, 2021.
  • Retrieve invoice payments within a date range by combining operators. For example, specifying created[gte]=1609459200&created[lt]=1612137600 filters for transactions created in January 2021.

These new filter operators reduce the need to retrieve all transactions and then filter them client-side, improving performance and reducing data transfer volume for date-specific queries.

Changes

ParameterChangeResources or endpoints
createdAddedCustomer#balance_transactions

Upgrade

  1. View your current API version in Workbench.
  2. If you use an SDK, upgrade to the corresponding SDK version for this API version.
  • If you don’t use an SDK, update your API requests to include Stripe-Version: 2025-11-17. clover
  1. Upgrade the API version used for webhook endpoints .
  2. Test your integration against the new version.
  3. If you use Connect, test your Connect integration .
  4. In Workbench, perform the upgrade . You can roll back the version for 72 hours.

Learn more about Stripe API upgrades.

Last verified 2026-09-24

Is this helpful?