# Adds support for deactivating configurations in Accounts v2 ## What’s new We added support for deactivating and reapplying configurations to [Accounts v2](https://docs.stripe.com/api/v2/core/accounts.md?api-version=2025-07-30.preview), which allows you to specify how your user is represented in Stripe. ## Impact Previously, you were required to choose from: - **Unrequesting capabilities**: This reversible action leaves unused configurations on an account, which can potentially cause unintended workflows. - **Closing accounts**: This semi-permanent action required Stripe support to reopen the account. With configuration deactivation, you can now: - Deactivate a configuration when it’s no longer required in order to keep your Accounts v2 as an accurate representation of your user. - Reapply configurations when they’re required again. This can help you manage and reduce the number of unused configurations on your Accounts v2. We also added a new `applied` field to each configuration’s response object, which denotes the configuration’s status. This status allows you to differentiate between active and deactivated configurations. ## Changes #### REST API | Parameter | Change | Resources or endpoints | | --------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `applied` | Added | [V2.Core.Account#update.configuration.customer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.Account#update.configuration.merchant](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.Account#update.configuration.recipient](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.Account#update.configuration.storer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [V2.Core.Account.configuration.customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.Account.configuration.merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.Account.configuration.recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.Account.configuration.storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### Ruby | Parameter | Change | Resources or methods | | --------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `applied` | Added | [V2::Core::Account::Configuration::Customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2::Core::Account::Configuration::Merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2::Core::Account::Configuration::Recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2::Core::Account::Configuration::Storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [V2::Core::Account::UpdateParams::Configuration::Customer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2::Core::Account::UpdateParams::Configuration::Merchant](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2::Core::Account::UpdateParams::Configuration::Recipient](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2::Core::Account::UpdateParams::Configuration::Storer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### Python | Parameter | Change | Resources or methods | | --------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `applied` | Added | [V2.Core.Account.Configuration.Customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.Account.Configuration.Merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.Account.Configuration.Recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.Account.Configuration.Storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [v2.core.Account.ModifyParamsConfigurationCustomer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [v2.core.Account.ModifyParamsConfigurationMerchant](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [v2.core.Account.ModifyParamsConfigurationRecipient](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [v2.core.Account.ModifyParamsConfigurationStorer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### PHP This change does not affect the PHP SDK. #### Java | Parameter | Change | Resources or methods | | --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `applied` | Added | [v2.core.Account.configuration.customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [v2.core.Account.configuration.merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [v2.core.Account.configuration.recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [v2.core.Account.configuration.storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [v2.core.AccountUpdateParams.configuration.customer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [v2.core.AccountUpdateParams.configuration.merchant](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [v2.core.AccountUpdateParams.configuration.recipient](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [v2.core.AccountUpdateParams.configuration.storer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### Node.js | Parameter | Change | Resources or methods | | --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `applied` | Added | [V2.Core.Account.configuration.customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.Account.configuration.merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.Account.configuration.recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.Account.configuration.storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [V2.Core.AccountUpdateParams.configuration.customer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.AccountUpdateParams.configuration.merchant](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.AccountUpdateParams.configuration.recipient](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.AccountUpdateParams.configuration.storer](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### Go | Parameter | Change | Resources or methods | | --------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `Applied` | Added | [V2CoreAccountConfigurationCustomer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2CoreAccountConfigurationCustomerParams](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2CoreAccountConfigurationMerchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2CoreAccountConfigurationMerchantParams](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2CoreAccountConfigurationRecipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2CoreAccountConfigurationRecipientParams](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2CoreAccountConfigurationStorer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [V2CoreAccountConfigurationStorerParams](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | #### .NET | Parameter | Change | Resources or methods | | --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `Applied` | Added | [V2.Core.Account.Configuration.Customer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2.Core.Account.Configuration.Merchant](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2.Core.Account.Configuration.Recipient](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2.Core.Account.Configuration.Storer](/api/v2/core/accounts/object?api-version=2025-08-27.preview#v2_account_object-configuration-storer), [V2CoreAccountConfigurationCustomerOptions](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-customer), [V2CoreAccountConfigurationMerchantOptions](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-merchant), [V2CoreAccountConfigurationRecipientOptions](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-recipient), [V2CoreAccountConfigurationStorerOptions](/api/v2/core/accounts/update?api-version=2025-08-27.preview#v2_account_object-configuration-storer) | ## 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-08-27.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.6.0-beta.1](https://github.com/stripe/stripe-ruby/releases/tag/v15.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). #### 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.6.0b1](https://github.com/stripe/stripe-python/releases/tag/v12.6.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.7.0-beta.1](https://github.com/stripe/stripe-php/releases/tag/v17.7.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.6.0-beta.1](https://github.com/stripe/stripe-java/releases/tag/v29.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). #### 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.6.0-beta.1](https://github.com/stripe/stripe-node/releases/tag/v18.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). #### 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.6.0-beta.1](https://github.com/stripe/stripe-go/releases/tag/v82.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). #### .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.6.0-beta.1](https://github.com/stripe/stripe-dotnet/releases/tag/v48.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). ## Related changes - [Nests the Balance Settings request object under a new Payments parameter](https://docs.stripe.com/changelog/basil/2025-08-27/balance-settings-nested-in-payments-field.md)