Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Adds error codes for Financial Account capability errors


Public preview

Adds error codes for Financial Account capability errors Public preview

What’s new

Adds two error codes for the /v1/payouts endpoint when using a financial account as the payout_method:

  • financial_account_capability_not_enabled : Returned when the required capabilities aren’t enabled for the operation. Request the required capabilities on the connected account before retrying.
  • financial_account_capability_restricted : Returned when the required capabilities are restricted for the operation. Fulfill any outstanding account requirements before retrying.

Previously, these operations returned storer_capability_missing and storer_capability_not_active error codes. Starting with API version 2026-06-24.preview, they’re replaced by financial_account_capability_not_enabled and financial_account_capability_restricted respectively.

Why is this a breaking change?

If your integration handles the storer_capability_missing or storer_capability_not_active error codes, you must update your error-handling logic to use financial_account_capability_not_enabled and financial_account_capability_restricted respectively when upgrading to API version 2026-06-24.preview or later. Integrations on earlier API versions continue to receive the previous error codes without any changes required.

Impact

If your integration checks for storer_capability_missing or storer_capability_not_active in error responses, update your code to handle financial_account_capability_not_enabled and financial_account_capability_restricted instead. Integrations that don’t explicitly handle these error codes by name are unaffected.

Changes

CodesChange
financial_account_capability_not_enabled financial_account_capability_restrictedAddedInvoice.last_finalization_error PaymentIntent.last_payment_error SetupAttempt.setup_error + 3 more SetupIntent.last_setup_error StripeError Terminal.Reader.action.api_error

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: 2026-06-24. preview
  1. Upgrade the API version used for webhook endpoints .
  2. Test your integration against the new version.
  3. If you use Connect, test your Connect integration .
  4. In Workbench, perform the upgrade . You can roll back the version for 72 hours.

Learn more about Stripe API upgrades.

Last verified 2026-09-24

Is this helpful?