# `Stripe.Services.FinancialConnections.AccountService`
[🔗](https://github.com/jeffhuen/tiger_stripe/blob/main/lib/stripe/services/financial_connections/account_service.ex#L2)

BankConnectionsResourceLinkedAccount

A Financial Connections Account represents an account that exists outside of Stripe, to which you have been granted some degree of access.

# `disconnect`

```elixir
@spec disconnect(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Disconnect an Account

Disables your access to a Financial Connections `Account`. You will no longer be able to access data associated with the account (e.g. balances, transactions).

# `list`

```elixir
@spec list(Stripe.Client.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

List Accounts

Returns a list of Financial Connections `Account` objects.

# `refresh`

```elixir
@spec refresh(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Refresh Account data

Refreshes the data associated with a Financial Connections `Account`.

# `retrieve`

```elixir
@spec retrieve(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Retrieve an Account

Retrieves the details of an Financial Connections `Account`.

# `subscribe`

```elixir
@spec subscribe(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Subscribe to data refreshes for an Account

Subscribes to periodic refreshes of data associated with a Financial Connections `Account`. When the account status is active, data is typically refreshed once a day.

# `unsubscribe`

```elixir
@spec unsubscribe(Stripe.Client.t(), String.t(), map(), keyword()) ::
  {:ok, term()} | {:error, Stripe.Error.t()}
```

Unsubscribe from data refreshes for an Account

Unsubscribes from periodic refreshes of data associated with a Financial Connections `Account`.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
