Skip to content
Create account or Sign in
The Stripe Docs logo
/
Ask AI
Create accountSign in
Get started
Payments
Revenue
Platforms and marketplaces
Money management
Developer resources
APIs & SDKsHelp
Overview
Versioning
Changelog
    Overview
    Clover
    Basil
    Acacia
    Previous versions
Upgrade your API version
Upgrade your SDK version
Essentials
SDKs
API
Testing
Stripe CLI
Sample projects
Tools
Stripe Dashboard
Workbench
Developers Dashboard
Stripe Shell
Stripe for Visual Studio Code
Features
Workflows
Event destinations
Stripe health alertsFile uploads
AI solutions
Agent toolkit
Model Context ProtocolBuild agentic AI SaaS Billing workflows
Security and privacy
Security
Stripebot web crawler
Privacy
Extend Stripe
Build Stripe apps
Use apps from Stripe
Partners
Partner ecosystem
Partner certification
United States
English (United States)
HomeDeveloper resourcesChangelogClover2025-12-15.clover

Adds the customer account property to v1 APIs for Accounts v2 interoperability

What’s new

Adds the customer_account property, which enables Connect platforms and marketplaces that use Accounts v2 to reference payments that they collect from connected accounts or customers. This property is available in several API v1 endpoints, such as Payment Intents and Invoices.

For example, you can use the Setup Intents API to save an account’s payment credentials for future payments. In this example, the Account must be configured as a customer.

Command Line
curl https://api.stripe.com/v1/setup_intents \ -u "${API_KEY}" \ -H "Stripe-Version: 2025-12-15.clover" \ -d "payment_method_types[]=stripe_balance" \ -d "payment_method_data[type]=stripe_balance" \ -d confirm=true \ -d customer_account=acct_1234 \ -d usage=off_session

Impact

Platforms and marketplaces on Connect often charge their connected accounts for services they provide. Previously, you used the Accounts v1 API and Customers v1 API to create two objects that represent a single user. This split representation meant collecting KYC twice, synchronizing data between the two objects, and storing multiple IDs for the same user.

You can now use the Accounts v2 API to create a single identity to represent your user across Stripe. This improves onboarding conversion by sharing KYC across your user’s customer and connected account identities, so Connect users don’t have to build duplicate representations and custom relationship logic.

Pass your user’s account ID in the customer_account property for APIs that collect or track payments.

No change is required if your integration uses Customers v1 and the customer property. If you’re interested in using the Accounts v2 API for new or existing connected accounts, register in the Dashboard.

Changes

ParameterChangeResources or endpoints
customer_accountAdded
Billing.CreditBalanceSummaryBilling.CreditBalanceSummary#retrieveBilling.CreditBalanceTransaction#list
 + 63 more
Billing.CreditGrantBilling.CreditGrant#createBilling.CreditGrant#listBillingPortal.SessionBillingPortal.Session#createCashBalanceCheckout.SessionCheckout.Session#createCheckout.Session#listConfirmationToken.payment_method_previewCreditNoteCreditNote#listCustomerCustomerBalanceTransactionCustomerCashBalanceTransactionCustomerSessionCustomerSession#createDiscountFinancialConnections.Account#list.account_holderFinancialConnections.Account.account_holderFinancialConnections.Session#create.account_holderFinancialConnections.Session.account_holderInvoiceInvoice#createInvoice#create_previewInvoice#listInvoiceItemInvoiceItem#createInvoiceItem#listPaymentIntentPaymentIntent#createPaymentIntent#listPaymentIntent#updatePaymentMethodPaymentMethod#attachPaymentMethod#listPromotionCodePromotionCode#createPromotionCode#listQuoteQuote#createQuote#listQuote#updateSetupAttemptSetupIntentSetupIntent#createSetupIntent#listSetupIntent#updateSubscriptionSubscription#createSubscription#listSubscriptionScheduleSubscriptionSchedule#createSubscriptionSchedule#listTaxIdTaxId#create.ownerTaxId#list.ownerTaxId.ownerrequired → optionalIdentity.VerificationSessionIdentity.VerificationSession#createIdentity.VerificationSession#listPaymentMethod#list

Upgrade

  1. View your current API version 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 to include Stripe-Version: 2025-12-15.clover
  3. Upgrade the API version used for webhook endpoints.
  4. Test your integration against the new version.
  5. If you use Connect, test your Connect integration.
  6. In Workbench, perform the upgrade. You can roll back the version for 72 hours.

Learn more about Stripe API upgrades.

Related changes

  • Connect platforms can now use Accounts v2 to manage connected accounts and customers
  • Accounts now support digital attestation for proof of registration and beneficial ownership verification
Was this page helpful?
YesNo
  • Need help? Contact Support.
  • Check out our changelog.
  • Questions? Contact Sales.
  • LLM? Read llms.txt.
  • Powered by Markdoc