# Adds filtering by creation date to Invoice Payment lists

## What’s new

You can now filter [Invoice Payments](https://docs.stripe.com/api/invoice-payment/object.md?api-version=2025-11-17.clover) by their creation date using the new [created](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover#list_invoice_payments-created) parameter when you [list invoice payments](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover).

The parameter supports date range queries using the following operators to specify a date interval: [gt](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover#list_invoice_payments-created-gt) (greater than), [gte](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover#list_invoice_payments-created-gte) (greater than or equal to), [lt](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover#list_invoice_payments-created-lt) (less than), and [lte](https://docs.stripe.com/api/invoice-payment/list.md?api-version=2025-11-17.clover#list_invoice_payments-created-lte) (less than or equal to).

## Impact

You can now filter invoice payments by their creation date when calling the list endpoint. This provides more granular control over which payments 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 payments 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 invoice payments 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 invoice payments created in January 2021.

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

## Changes

#### REST API

| Parameter | Change | Resources or endpoints                                                         |
| --------- | ------ | ------------------------------------------------------------------------------ |
| `created` | Added  | [InvoicePayment#list](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### Ruby

| Parameter | Change | Resources or methods                                                                |
| --------- | ------ | ----------------------------------------------------------------------------------- |
| `created` | Added  | [InvoicePaymentListParams](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### Python

| Parameter | Change | Resources or methods                                                                |
| --------- | ------ | ----------------------------------------------------------------------------------- |
| `created` | Added  | [InvoicePaymentListParams](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### PHP

| Parameter | Change | Resources or methods                                                                    |
| --------- | ------ | --------------------------------------------------------------------------------------- |
| `created` | Added  | [InvoicePayment.all().$params](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### Java

| Parameter | Change | Resources or methods                                                                |
| --------- | ------ | ----------------------------------------------------------------------------------- |
| `created` | Added  | [InvoicePaymentListParams](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### Node.js

| Parameter | Change | Resources or methods                                                                |
| --------- | ------ | ----------------------------------------------------------------------------------- |
| `created` | Added  | [InvoicePaymentListParams](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### Go

| Parameter | Change | Resources or methods                                                                |
| --------- | ------ | ----------------------------------------------------------------------------------- |
| `Created` | Added  | [InvoicePaymentListParams](/api/invoice-payment/list?api-version=2025-11-17.clover) |

#### .NET

| Parameter | Change | Resources or methods                                                                 |
| --------- | ------ | ------------------------------------------------------------------------------------ |
| `Created` | Added  | [InvoicePaymentListOptions](/api/invoice-payment/list?api-version=2025-11-17.clover) |

## Upgrade

#### REST API

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. 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](https://docs.stripe.com/api/versioning.md) to include `Stripe-Version: 2025-11-17.clover`
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### Ruby

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your Ruby SDK to [v17.2.0](https://github.com/stripe/stripe-ruby/releases/tag/v17.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### Python

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your Python SDK to [v13.2.0](https://github.com/stripe/stripe-python/releases/tag/v13.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### PHP

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your PHP SDK to [v18.2.0](https://github.com/stripe/stripe-php/releases/tag/v18.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### Java

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your Java SDK to [v30.2.0](https://github.com/stripe/stripe-java/releases/tag/v30.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### Node.js

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your Node SDK to [v19.3.0](https://github.com/stripe/stripe-node/releases/tag/v19.3.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### Go

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your Go SDK to [v83.2.0](https://github.com/stripe/stripe-go/releases/tag/v83.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

#### .NET

1. [View your current API version](https://docs.stripe.com/upgrades.md#view-your-api-version-and-the-latest-available-upgrade-in-workbench) in Workbench.
1. Upgrade your .NET SDK to [v49.2.0](https://github.com/stripe/stripe-dotnet/releases/tag/v49.2.0)
1. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
1. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
1. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
1. In Workbench, [perform the upgrade](https://docs.stripe.com/upgrades.md#perform-the-upgrade). You can [roll back the version](https://docs.stripe.com/upgrades.md#roll-back-your-api-version) for 72 hours.

Learn more about [Stripe API upgrades](https://docs.stripe.com/upgrades.md).

## Related changes

- [Adds filtering by creation date to Customer Balance Transactions lists](https://docs.stripe.com/changelog/clover/2025-11-17/customer-balance-transactions-list-created.md)
- [Adds the ability to specify a payment method configuration in the customer portal](https://docs.stripe.com/changelog/clover/2025-11-17/portal-payment-method-configuration.md)
