# Adds support for payment line items to incremental authorization

## What’s new

You can now add the line items associated with a payment when [incrementing an authorization](https://docs.stripe.com/api/payment_intents/increment_authorization.md?api-version=2025-07-30.preview).

For more information on feature eligibility, restrictions, and how to integrate this update, see [payment line items](https://docs.stripe.com/payments/payment-line-items.md).

## Impact

If your integration uses [incremental authorization](https://docs.stripe.com/payments/incremental-authorization.md), you can now also use [payment line items](https://docs.stripe.com/payments/payment-line-items.md).

## Changes

#### REST API

| Parameters                          | Change | Resources or endpoints                                                                                                                                                                                                                                                                                                                                   |
| ----------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amount_details`, `payment_details` | Added  | [PaymentIntent#increment_authorization.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntent#increment_authorization.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### Ruby

| Parameters                          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                 |
| ----------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amount_details`, `payment_details` | Added  | [PaymentIntent::IncrementAuthorizationParams.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntent::IncrementAuthorizationParams.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### Python

| Parameters                          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                               |
| ----------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `amount_details`, `payment_details` | Added  | [PaymentIntent.IncrementAuthorizationParams.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntent.IncrementAuthorizationParams.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### PHP

This change does not affect the PHP SDK.

#### Java

| Parameters                        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                             |
| --------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amountDetails`, `paymentDetails` | Added  | [PaymentIntentIncrementAuthorizationParams.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntentIncrementAuthorizationParams.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### Node.js

| Parameters                          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                             |
| ----------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `amount_details`, `payment_details` | Added  | [PaymentIntentIncrementAuthorizationParams.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntentIncrementAuthorizationParams.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### Go

| Parameters                        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                             |
| --------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `AmountDetails`, `PaymentDetails` | Added  | [PaymentIntentIncrementAuthorizationParams.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntentIncrementAuthorizationParams.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

#### .NET

| Parameters                        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                               |
| --------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `AmountDetails`, `PaymentDetails` | Added  | [PaymentIntentIncrementAuthorizationOptions.amount_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-amount_details), [PaymentIntentIncrementAuthorizationOptions.payment_details](/api/payment_intents/increment_authorization?api-version=2025-07-30.preview#increment_authorization-payment_details) |

## 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-07-30.preview`
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 [v15.5.0-beta.1](https://github.com/stripe/stripe-ruby/releases/tag/v15.5.0-beta.1)
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 [v12.5.0b1](https://github.com/stripe/stripe-python/releases/tag/v12.5.0b1)
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 [v17.6.0-beta.1](https://github.com/stripe/stripe-php/releases/tag/v17.6.0-beta.1)
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 [v29.5.0-beta.1](https://github.com/stripe/stripe-java/releases/tag/v29.5.0-beta.1)
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 [v18.5.0-beta.1](https://github.com/stripe/stripe-node/releases/tag/v18.5.0-beta.1)
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 [v82.5.0-beta.1](https://github.com/stripe/stripe-go/releases/tag/v82.5.0-beta.1)
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 [v48.5.0-beta.1](https://github.com/stripe/stripe-dotnet/releases/tag/v48.5.0-beta.1)
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 support for payment line items to multicapture](https://docs.stripe.com/changelog/basil/2025-07-30/payment-line-items-multicapture.md)
- [Increases payment line items limit to 200](https://docs.stripe.com/changelog/basil/2025-07-30/increase-payment-line-items-limit-to-200.md)
