# AccountBalances

Account balance for a single currency. One record per `(accountId, currency)` pair. All amounts are in the currency's minor units (e.g. cents for EUR).

```
type AccountBalances {

  accountId: ID!

  currency: String!

  clearedAmount: Int!

  outstandingAmount: Int!

  totalAmount: Int!

  createdAt: String!

  updatedAt: String

}
```

### Fields[​](#fields "Direct link to Fields")

#### [`AccountBalances.accountId`](#account-id) ● [`ID!`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) non-null scalar[​](#account-id "Direct link to account-id")

Owning account this balance belongs to.

#### [`AccountBalances.currency`](#currency) ● [`String!`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) non-null scalar[​](#currency "Direct link to currency")

ISO 4217 currency code of this balance (e.g. `EUR`).

#### [`AccountBalances.clearedAmount`](#cleared-amount) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#cleared-amount "Direct link to cleared-amount")

Settled funds available for refunds or outbound payments. Minor units.

#### [`AccountBalances.outstandingAmount`](#outstanding-amount) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#outstanding-amount "Direct link to outstanding-amount")

Pending funds from transactions not yet settled. Minor units.

#### [`AccountBalances.totalAmount`](#total-amount) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#total-amount "Direct link to total-amount")

Sum of cleared and outstanding amounts. Minor units.

#### [`AccountBalances.createdAt`](#created-at) ● [`String!`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) non-null scalar[​](#created-at "Direct link to created-at")

Creation timestamp (ISO 8601).

#### [`AccountBalances.updatedAt`](#updated-at) ● [`String`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) scalar[​](#updated-at "Direct link to updated-at")

Last update timestamp (ISO 8601).

### Member Of[​](#member-of "Direct link to Member Of")

[`AccountBalancesConnection`](https://docs.monei.com/apis/graphql/types/objects/account-balances-connection/.md) object
