# 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 "Enlace directo al Fields")

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

Account ID the settlement belongs to.

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

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

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

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

#### [`AccountSettlement.iban`](#iban) ● [`String`](https://docs.monei.com/es/es/apis/graphql/types/scalars/string/.md) scalar[​](#iban "Enlace directo al iban")

Destination IBAN for the bank transfer.

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

Settlement ID.

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

Legal name of the account holder receiving the transfer.

#### [`AccountSettlement.netVolume`](#net-volume) ● [`Int!`](https://docs.monei.com/es/es/apis/graphql/types/scalars/int/.md) non-null scalar[​](#net-volume "Enlace directo al 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/es/es/apis/graphql/types/enums/settlement-pay-methods/.md) enum[​](#pay-method "Enlace directo al pay-method")

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

#### [`AccountSettlement.periodEndAt`](#period-end-at) ● [`AWSTimestamp!`](https://docs.monei.com/es/es/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#period-end-at "Enlace directo al 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/es/es/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#period-start-at "Enlace directo al 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/es/es/apis/graphql/types/scalars/int/.md) scalar[​](#released-amount "Enlace directo al 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/es/es/apis/graphql/types/scalars/int/.md) scalar[​](#reserved-amount "Enlace directo al 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/es/es/apis/graphql/types/scalars/awstimestamp/.md) non-null scalar[​](#scheduled-at "Enlace directo al 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/es/es/apis/graphql/types/enums/settlement-status/.md) non-null enum[​](#status "Enlace directo al status")

Settlement lifecycle status.

#### [`AccountSettlement.settleGross`](#settle-gross) ● [`Boolean`](https://docs.monei.com/es/es/apis/graphql/types/scalars/boolean/.md) scalar[​](#settle-gross "Enlace directo al 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/es/es/apis/graphql/types/scalars/id/.md) scalar[​](#store-id "Enlace directo al 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/es/es/apis/graphql/types/scalars/string/.md) scalar[​](#currency "Enlace directo al currency")

ISO 4217 currency code of the settlement.

### Returned By[​](#returned-by "Enlace directo al Returned By")

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

### Member Of[​](#member-of "Enlace directo al Member Of")

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