# AccountSettlement

Settlement batch grouping a merchant's transactions for one payout period, currency, and payment method. A `COMPLETED` settlement produces a single bank transfer to `iban`.

```
type AccountSettlement {

  accountId: ID!

  acquirerFees: Int!

  grossVolume: Int!

  iban: String

  id: ID!

  legalName: String

  netVolume: Int!

  payMethod: SettlementPayMethods

  periodEndAt: AWSTimestamp!

  periodStartAt: AWSTimestamp!

  releasedAmount: Int

  reservedAmount: Int

  scheduledAt: AWSTimestamp!

  status: SettlementStatus!

  settleGross: Boolean

  storeId: ID

  currency: String

}
```

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

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

Account ID the settlement belongs to.

#### [`AccountSettlement.acquirerFees`](#acquirer-fees) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#acquirer-fees "Direct link to acquirer-fees")

Acquirer/processing fees accrued for the period, in minor units.

#### [`AccountSettlement.grossVolume`](#gross-volume) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#gross-volume "Direct link to gross-volume")

Gross transaction volume for the period (before fees), in minor units.

#### [`AccountSettlement.iban`](#iban) ● [`String`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) scalar[​](#iban "Direct link to iban")

Destination IBAN for the bank transfer.

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

Settlement ID.

#### [`AccountSettlement.legalName`](#legal-name) ● [`String`](https://docs.monei.com/apis/graphql/types/scalars/string/.md) scalar[​](#legal-name "Direct link to legal-name")

Legal name of the account holder receiving the transfer.

#### [`AccountSettlement.netVolume`](#net-volume) ● [`Int!`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) non-null scalar[​](#net-volume "Direct link to net-volume")

Amount transferred to the merchant for the period, in minor units. While `PENDING`, this is the running balance (gross minus acquirer fees, plus carried-in reserve). On `COMPLETED`, this is the net amount sent to `iban` after the new reserve is withheld.

#### [`AccountSettlement.payMethod`](#pay-method) ● [`SettlementPayMethods`](https://docs.monei.com/apis/graphql/types/enums/settlement-pay-methods/.md) enum[​](#pay-method "Direct link to pay-method")

Payment method the batch covers. Each method settles in its own batch.

#### [`AccountSettlement.periodEndAt`](#period-end-at) ● [`AWSTimestamp!`](https://docs.monei.com/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#period-end-at "Direct link to period-end-at")

End of the settlement period (timestamp of the last transaction included), as a unix timestamp (seconds).

#### [`AccountSettlement.periodStartAt`](#period-start-at) ● [`AWSTimestamp!`](https://docs.monei.com/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#period-start-at "Direct link to period-start-at")

Start of the settlement period (timestamp of the first transaction included), as a unix timestamp (seconds).

#### [`AccountSettlement.releasedAmount`](#released-amount) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#released-amount "Direct link to released-amount")

Reserve released into this settlement from the previous period, in minor units. Populated on `COMPLETED`.

#### [`AccountSettlement.reservedAmount`](#reserved-amount) ● [`Int`](https://docs.monei.com/apis/graphql/types/scalars/int/.md) scalar[​](#reserved-amount "Direct link to reserved-amount")

Reserve withheld from this settlement, in minor units. Stored as a negative value on `COMPLETED` settlements (amount removed from the transfer); appears as a positive carry-in balance on the next `PENDING` settlement.

#### [`AccountSettlement.scheduledAt`](#scheduled-at) ● [`AWSTimestamp!`](https://docs.monei.com/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#scheduled-at "Direct link to scheduled-at")

Settlement evaluation date as a unix timestamp (seconds). For `PENDING` settlements: projected closing date (period start + period length, advanced past weekends). For `COMPLETED`/`SUSPENDED`: the day the batch was closed.

#### [`AccountSettlement.status`](#status) ● [`SettlementStatus!`](https://docs.monei.com/apis/graphql/types/enums/settlement-status/.md) non-null enum[​](#status "Direct link to status")

Settlement lifecycle status.

#### [`AccountSettlement.settleGross`](#settle-gross) ● [`Boolean`](https://docs.monei.com/apis/graphql/types/scalars/boolean/.md) scalar[​](#settle-gross "Direct link to settle-gross")

When `true`, the merchant is paid the full `grossVolume` (acquirer fees not deducted from the transfer) and `reservePercent` is forced to 0. When `false`/null, the transfer is `netVolume` (gross minus acquirer fees, minus reserve).

#### [`AccountSettlement.storeId`](#store-id) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#store-id "Direct link to store-id")

Store ID when the settlement is scoped to a specific store under a multi-store account.

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

ISO 4217 currency code of the settlement.

### Returned By[​](#returned-by "Direct link to Returned By")

[`accountSettlement`](https://docs.monei.com/apis/graphql/operations/queries/account-settlement/.md) query

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

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