# Adds the ability to provide proof-of-address documents for connected accounts in v2 APIs

## What’s new

Connect platforms can now submit `proof_of_address` documents to demonstrate physical presence.

## Impact

Connect platforms need to collect the documents from their connected accounts and submit them to Stripe to meet certain product address validation requirements.

## Changes

#### REST API

| Parameter          | Change | Resources or endpoints                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| ------------------ | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `proof_of_address` | Added  | [V2.Core.Account#create.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-response-identity-business_details-documents), [V2.Core.Account#update.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_update_accounts-response-identity-business_details-documents), [V2.Core.Account.identity.business_details.documents](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents) |

#### Ruby

| Parameter          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |
| ------------------ | ------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `proof_of_address` | Added  | [V2::Core::Account::CreateParams::Identity::BusinessDetail::Document](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents), [V2::Core::Account::Identity::BusinessDetail::Document](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [V2::Core::Account::UpdateParams::Identity::BusinessDetail::Document](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_update_accounts-request-identity-business_details-documents) |

#### Python

| Parameter          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  |
| ------------------ | ------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `proof_of_address` | Added  | [V2.Core.Account.Identity.BusinessDetail.Document](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [v2.core.Account.CreateParamsIdentityBusinessDetailDocument](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents), [v2.core.Account.ModifyParamsIdentityBusinessDetailDocument](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_update_accounts-request-identity-business_details-documents) |

#### PHP

This change does not affect the PHP SDK.

#### Java

| Parameter        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| ---------------- | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `proofOfAddress` | Added  | [v2.core.Account.identity.business_details.documents](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [v2.core.AccountCreateParams.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents), [v2.core.AccountUpdateParams.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_update_accounts-request-identity-business_details-documents) |

#### Node.js

| Parameter          | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               |
| ------------------ | ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `proof_of_address` | Added  | [V2.Core.Account.identity.business_details.documents](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [V2.Core.AccountCreateParams.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents), [V2.Core.AccountUpdateParams.identity.business_details.documents](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_update_accounts-request-identity-business_details-documents) |

#### Go

| Parameter        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                              |
| ---------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `ProofOfAddress` | Added  | [V2CoreAccountIdentityBusinessDetailsDocuments](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [V2CoreAccountIdentityBusinessDetailsDocumentsParams](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents) |

#### .NET

| Parameter        | Change | Resources or methods                                                                                                                                                                                                                                                                                                                                                    |
| ---------------- | ------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `ProofOfAddress` | Added  | [V2.Core.Account.Identity.BusinessDetails.Documents](/api/v2/core/accounts/object?api-version=2025-06-30.preview#v2_retrieve_accounts-response-identity-business_details-documents), [V2CoreAccountIdentityBusinessDetailsDocumentsOptions](/api/v2/core/accounts/update?api-version=2025-06-30.preview#v2_create_accounts-request-identity-business_details-documents) |

## 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-06-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.4.0-beta.2](https://github.com/stripe/stripe-ruby/releases/tag/v15.4.0-beta.2)
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.4.0b2](https://github.com/stripe/stripe-python/releases/tag/v12.4.0b2)
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.5.0-beta.2](https://github.com/stripe/stripe-php/releases/tag/v17.5.0-beta.2)
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.4.0-beta.2](https://github.com/stripe/stripe-java/releases/tag/v29.4.0-beta.2)
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.4.0-beta.2](https://github.com/stripe/stripe-node/releases/tag/v18.4.0-beta.2)
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.4.0-beta.2](https://github.com/stripe/stripe-go/releases/tag/v82.4.0-beta.2)
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.4.0-beta.2](https://github.com/stripe/stripe-dotnet/releases/tag/v48.4.0-beta.2)
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).
