Stripe | Financial Infrastructure to Grow Your Revenue

Stripe | Financial Infrastructure to Grow Your Revenue

4466 articles

Financial Account Features


Financial Account Features

Encodes whether a FinancialAccount has access to a particular Feature, with a status enum and associated status_details. Stripe or the platform can control Features via the requested field.

Was this section helpful? Yes No

Update FinancialAccount Features

POST / v1 / treasury / financial_accounts /:id / features

Retrieve FinancialAccount Features

GET / v1 / treasury / financial_accounts /:id / features

The FinancialAccount Feature object

Attributes

  • object string, value is "treasury.financial_account_features" String representing the object’s type. Objects of the same type share the same value.
  • card _ issuing nullable object Contains a Feature encoding the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from.
  • deposit _ insurance nullable object Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.
  • financial _ addresses nullable object Contains Features that add FinancialAddresses to the FinancialAccount.
  • inbound _ transfers nullable object Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.
  • intra _ stripe _ flows nullable object Represents the ability for this FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).
  • outbound _ payments nullable object Contains Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.
  • outbound _ transfers nullable object Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.

The FinancialAccount Feature object

{ "object": "treasury.financial_account_features", "card_issuing": { "requested": true, "status": "active", "status_details": [] }, "deposit_insurance": { "requested": true, "status": "active", "status_details": [] }, "financial_addresses": { "aba": { "requested": true, "status": "active", "status_details": [] } }, "inbound_transfers": { "ach": { "requested": true, "status": "active", "status_details": [] } }, "intra_stripe_flows": { "requested": true, "status": "active", "status_details": [] }, "outbound_payments": { "ach": { "requested": true, "status": "active", "status_details": [] }, "us_domestic_wire": { "requested": true, "status": "active", "status_details": [] } }, "outbound_transfers": { "ach": { "requested": true, "status": "active", "status_details": [] }, "us_domestic_wire": { "requested": true, "status": "active", "status_details": [] } }}

Update FinancialAccount Features

POST / v1 / treasury / financial_accounts /:id / features

Updates the Features associated with a FinancialAccount.

Parameters

  • card _ issuing object Encodes the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from the FinancialAccount.
  • deposit _ insurance object Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.
  • financial _ addresses object Contains Features that add FinancialAddresses to the FinancialAccount.
  • inbound _ transfers object Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.
  • intra _ stripe _ flows object Represents the ability for the FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).
  • outbound _ payments object Includes Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.
  • outbound _ transfers object Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.

Returns

A dictionary of Features associated with the given FinancialAccount. Each entry in the dictionary is a Feature object, which may contain child Features.

Response

{ "object": "treasury.financial_account_features", "deposit_insurance": { "requested": true, "status": "active", "status_details": [] }, "financial_addresses": { "aba": { "requested": true, "status": "active", "status_details": [] } }, "inbound_transfers": { "ach": { "requested": true, "status": "active", "status_details": [] } }, "intra_stripe_flows": { "requested": true, "status": "active", "status_details": [] }, "outbound_payments": { "ach": { "requested": true, "status": "active", "status_details": [] }, "us_domestic_wire": { "requested": true, "status": "active", "status_details": [] } }, "outbound_transfers": { "ach": { "requested": true, "status": "active", "status_details": [] }, "us_domestic_wire": { "requested": true, "status": "active", "status_details": [] } }}
Last verified 2026-09-24

Is this helpful?