# Adds MB WAY to payment method configurations

## What’s new

You can now enable and set up the Portuguese local payment method [MB WAY](https://docs.stripe.com/payments/mb-way.md) in [Payment Method Configurations](https://docs.stripe.com/api/payment_method_configurations.md?api-version=2025-10-29.clover).

## Impact

You can now define a [payment method configuration](https://docs.stripe.com/payments/payment-method-configurations.md) to include MB WAY, a popular payment method in Portugal, in dynamic payment method selection. Stripe dynamically presents payment methods to customers at checkout based on specific factors, such as locality and conversion rate.

## Changes

#### REST API

| Parameter | Change | Resources or endpoints                                                                                                                                                                                                                                                                                                                                                                                    |
| --------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mb_way`  | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfiguration#create](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfiguration#update](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### Ruby

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                    |
| --------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mb_way`  | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfiguration::CreateParams](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfiguration::UpdateParams](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### Python

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                  |
| --------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mb_way`  | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfiguration.CreateParams](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfiguration.ModifyParams](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### PHP

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                          |
| --------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mb_way`  | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfiguration.create().$params](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfiguration.update().$params](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### Java

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                |
| --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mbWay`   | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfigurationCreateParams](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfigurationUpdateParams](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### Node.js

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                |
| --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `mb_way`  | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfigurationCreateParams](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfigurationUpdateParams](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

#### Go

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                   |
| --------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| `MbWay`   | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfigurationParams](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration) |

#### .NET

| Parameter | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                  |
| --------- | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `MbWay`   | Added  | [PaymentMethodConfiguration](/api/payment_method_configurations/object?api-version=2025-10-29.clover), [PaymentMethodConfigurationCreateOptions](/api/payment_method_configurations/create?api-version=2025-10-29.clover#create_payment_method_configuration), [PaymentMethodConfigurationUpdateOptions](/api/payment_method_configurations/update?api-version=2025-10-29.clover#update_payment_method_configuration) |

## 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-10-29.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.1.0](https://github.com/stripe/stripe-ruby/releases/tag/v17.1.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.1.0](https://github.com/stripe/stripe-python/releases/tag/v13.1.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.1.0](https://github.com/stripe/stripe-php/releases/tag/v18.1.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.1.0](https://github.com/stripe/stripe-java/releases/tag/v30.1.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.2.0](https://github.com/stripe/stripe-node/releases/tag/v19.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).

#### 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.1.0](https://github.com/stripe/stripe-go/releases/tag/v83.1.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.1.0](https://github.com/stripe/stripe-dotnet/releases/tag/v49.1.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 TWINT payment method options to Checkout Sessions](https://docs.stripe.com/changelog/clover/2025-10-29/twint-checkout-sessions.md)
- [Adds support for specifying payment method configurations to the customer portal](https://docs.stripe.com/changelog/clover/2025-10-29/customer-portal-payment-method-configurations.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)
