# Update FinancialAccount Features

Updates the Features associated with a FinancialAccount.

## Request

```curl
curl https://api.stripe.com/v1/treasury/financial_accounts/{{FINANCIAL_ACCOUNT_ID}}/features \
  -u "<<YOUR_SECRET_KEY>>" \
  -d "card_issuing[requested]=false"
```

### Response

```json
{
  "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": []
    }
  }
}
```

## Returns

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

## Parameters

- [`card_issuing`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=card_issuing) (object, optional)
  Encodes the FinancialAccount’s ability to be used with the Issuing product, including attaching cards to and drawing funds from the FinancialAccount.

- [`deposit_insurance`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=deposit_insurance) (object, optional)
  Represents whether this FinancialAccount is eligible for deposit insurance. Various factors determine the insurance amount.

- [`financial_addresses`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=financial_addresses) (object, optional)
  Contains Features that add FinancialAddresses to the FinancialAccount.

- [`inbound_transfers`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=inbound_transfers) (object, optional)
  Contains settings related to adding funds to a FinancialAccount from another Account with the same owner.

- [`intra_stripe_flows`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=intra_stripe_flows) (object, optional)
  Represents the ability for the FinancialAccount to send money to, or receive money from other FinancialAccounts (for example, via OutboundPayment).

- [`outbound_payments`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=outbound_payments) (object, optional)
  Includes Features related to initiating money movement out of the FinancialAccount to someone else’s bucket of money.

- [`outbound_transfers`](https://docs.stripe.com/api/treasury/financial_account_features/update.md?query=outbound_transfers) (object, optional)
  Contains a Feature and settings related to moving money out of the FinancialAccount into another Account with the same owner.
