# Adds support for specifying payment method configurations to the customer portal

## What’s new

Adds the ability to specify your own [Payment Method Configurations](https://docs.stripe.com/api/payment_method_configurations.md?api-version=2025-10-29.clover) for [Customer Portal Sessions](https://docs.stripe.com/api/customer_portal/sessions.md?api-version=2025-10-29.clover).

## Impact

You can provide your own [payment method configurations](https://docs.stripe.com/payments/payment-method-configurations.md) when [configuring the customer portal](https://docs.stripe.com/customer-management/configure-portal.md), enabling you to display different sets of payment methods depending on the customer or payment scenario.

## Changes

#### REST API

| Parameter | Change | Resources or endpoints |
| --- | --- | --- |
| `payment_method_configuration` | Added | [BillingPortal.Configuration#create.features.payment_method_update](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [BillingPortal.Configuration#update.features.payment_method_update](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### Ruby

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `payment_method_configuration` | Added | [BillingPortal::Configuration::CreateParams::Feature::PaymentMethodUpdate](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [BillingPortal::Configuration::UpdateParams::Feature::PaymentMethodUpdate](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### Python

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `payment_method_configuration` | Added | [billing_portal.Configuration.CreateParamsFeaturePaymentMethodUpdate](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [billing_portal.Configuration.ModifyParamsFeaturePaymentMethodUpdate](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### PHP

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `payment_method_configuration` | Added | [BillingPortal\Configuration.create().$params.feature.payment_method_update](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [BillingPortal\Configuration.update().$params.feature.payment_method_update](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### Java

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `paymentMethodConfiguration` | Added | [billingportal.ConfigurationCreateParams.features.payment_method_update](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [billingportal.ConfigurationUpdateParams.features.payment_method_update](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### Node.js

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `payment_method_configuration` | Added | [BillingPortal.ConfigurationCreateParams.features.payment_method_update](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update), [BillingPortal.ConfigurationUpdateParams.features.payment_method_update](/api/customer_portal/configurations/update?api-version=2025-10-29.clover#update_billing_portal_configuration-features-payment_method_update) |

#### Go

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `PaymentMethodConfiguration` | Added | [BillingPortalConfigurationFeaturesPaymentMethodUpdateParams](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update) |

#### .NET

| Parameter | Change | Resources or methods |
| --- | --- | --- |
| `PaymentMethodConfiguration` | Added | [BillingPortalConfigurationFeaturesPaymentMethodUpdateOptions](/api/customer_portal/configurations/create?api-version=2025-10-29.clover#create_billing_portal_configuration-features-payment_method_update) |

## 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.
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](https://docs.stripe.com/api/versioning.md) to include `Stripe-Version: 2025-10-29.clover`
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your Ruby SDK to [v17.1.0](https://github.com/stripe/stripe-ruby/releases/tag/v17.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your Python SDK to [v13.1.0](https://github.com/stripe/stripe-python/releases/tag/v13.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your PHP SDK to [v18.1.0](https://github.com/stripe/stripe-php/releases/tag/v18.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your Java SDK to [v30.1.0](https://github.com/stripe/stripe-java/releases/tag/v30.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your Node SDK to [v19.2.0](https://github.com/stripe/stripe-node/releases/tag/v19.2.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your Go SDK to [v83.1.0](https://github.com/stripe/stripe-go/releases/tag/v83.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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.
2. Upgrade your .NET SDK to [v49.1.0](https://github.com/stripe/stripe-dotnet/releases/tag/v49.1.0)
3. Upgrade the API version used for [webhook endpoints](https://docs.stripe.com/webhooks/versioning.md).
4. [Test your integration](https://docs.stripe.com/testing.md) against the new version.
5. If you use Connect, [test your Connect integration](https://docs.stripe.com/connect/testing.md).
6. 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 MB WAY to payment method configurations](https://docs.stripe.com/changelog/clover/2025-10-29/mb-way-payment-method-configuration.md)
- [Adds TWINT payment method options to Checkout Sessions](https://docs.stripe.com/changelog/clover/2025-10-29/twint-checkout-sessions.md)
- [Adds MB WAY payment method to Payment Links and Checkout Sessions](https://docs.stripe.com/changelog/clover/2025-10-29/mb-way-payment-link-checkout-sessions.md)
- [Adds the ability to exclude payment methods when using Setup Intents](https://docs.stripe.com/changelog/clover/2025-10-29/exclude-payment-methods-setup-intents.md)
- [Adds Klarna reference parameters for line items in Payment Intents](https://docs.stripe.com/changelog/clover/2025-10-29/klarna-line-item-reference.md)
- [Adds a subscription reference to Klarna line items in Payment Intents](https://docs.stripe.com/changelog/clover/2025-10-29/klarna-items-payment-intents.md)
- [Adds support for custom payment methods](https://docs.stripe.com/changelog/clover/2025-10-29/custom-payment-methods.md)
