# Adds a new event type for Payout Method updates ## What’s new We added a new [event type](https://docs.stripe.com/api/v2/core/events/event-types.md?api-version=2025-07-30.preview) for the [Payout Methods v2 API](https://docs.stripe.com/api/v2/money-management/payout-methods.md?api-version=2025-07-30.preview). The [v2.money_management.payout_method.updated](https://docs.stripe.com/api/v2/core/events/event-types.md?api-version=2025-07-30.preview#v2_event_types-v2.money_management.payout_method.updated) event triggers when a payout method is updated. This allows you to receive notifications about changes to your payout methods. ## Impact You can now subscribe to event notifications when Stripe updates the Payout Method credentials (such as the bank account). This allows your systems to remain in sync with the latest payout method information. The event provides visibility into the changes made to fields in the defaults hash on a [v2 Payout Method](https://docs.stripe.com/api/v2/money-management/payout-methods/object.md?api-version=2025-07-30.preview). This includes the [bank_account_type](https://docs.stripe.com/api/v2/money-management/payout-methods/object.md?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) field (for example, `checking` or `savings`) that’s accessible on the `PayoutMethod` object. This Global Payouts enhancement enables you to build applications that can react to payout method updates. ## Changes #### REST API | Parameter | Change | Resources or endpoints | | ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `bank_account_type` | Added | [V2.MoneyManagement.PayoutMethod.bank_account](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2.MoneyManagement.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### Ruby | Parameter | Change | Resources or methods | | ------------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `bank_account_type` | Added | [V2::MoneyManagement::PayoutMethod::BankAccount](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------ | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2::MoneyManagement::PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### Python | Parameter | Change | Resources or methods | | ------------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `bank_account_type` | Added | [V2.MoneyManagement.PayoutMethod.BankAccount](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ----------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [v2.money_management.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### PHP | | Change | Event type | | ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2.MoneyManagement.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### Java | Parameter | Change | Resources or methods | | ----------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `bankAccountType` | Added | [v2.moneymanagement.PayoutMethod.bank_account](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [v2.moneymanagement.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### Node.js | Parameter | Change | Resources or methods | | ------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | `bank_account_type` | Added | [V2.MoneyManagement.PayoutMethod.bank_account](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2.MoneyManagement.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### Go | Parameter | Change | Resources or methods | | ----------------- | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `BankAccountType` | Added | [V2MoneyManagementPayoutMethodBankAccount](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | -------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2MoneyManagementPayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | #### .NET | Parameter | Change | Resources or methods | | ----------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `BankAccountType` | Added | [V2.MoneyManagement.PayoutMethod.BankAccount](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview#v2_payout_method_object-bank_account) | | | Change | Event type | | ------------------------------------------- | ------ | ---------------------------------------------------------------------------------------------------------------- | | `V2MoneyManagementPayoutMethodUpdatedEvent` | Added | [V2.MoneyManagement.PayoutMethod](/api/v2/money-management/payout-methods/object?api-version=2025-07-30.preview) | ## 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).