# AccountStatus

Lifecycle status of a merchant account.

* `ACTIVE` - Account is active and can process payments.
* `PENDING_CONTRACT` - KYC review pending; onboarding is not yet complete.
* `PENDING_APPROVAL` - Contract signed, awaiting compliance review.
* `APPROVED` - Compliance review passed; payouts are being released.
* `NOT_CONFIGURED` - Additional information or documents are required (see `statusReason`).
* `SUSPENDED` - Temporarily disabled by MONEI (see `statusReason`).
* `REJECTED` - Compliance review failed (see `statusReason`).
* `DELETED` - Account permanently removed.
* `PENDING_REVIEW` - Re-review in progress after additional information was provided.

```
enum AccountStatus {

  ACTIVE

  PENDING_CONTRACT

  PENDING_APPROVAL

  APPROVED

  NOT_CONFIGURED

  SUSPENDED

  REJECTED

  DELETED

  PENDING_REVIEW

}
```

### Values[​](#values "Direct link to Values")

#### [`AccountStatus.ACTIVE`](#active)[​](#active "Direct link to active")

#### [`AccountStatus.PENDING_CONTRACT`](#pending-contract)[​](#pending-contract "Direct link to pending-contract")

#### [`AccountStatus.PENDING_APPROVAL`](#pending-approval)[​](#pending-approval "Direct link to pending-approval")

#### [`AccountStatus.APPROVED`](#approved)[​](#approved "Direct link to approved")

#### [`AccountStatus.NOT_CONFIGURED`](#not-configured)[​](#not-configured "Direct link to not-configured")

#### [`AccountStatus.SUSPENDED`](#suspended)[​](#suspended "Direct link to suspended")

#### [`AccountStatus.REJECTED`](#rejected)[​](#rejected "Direct link to rejected")

#### [`AccountStatus.DELETED`](#deleted)[​](#deleted "Direct link to deleted")

#### [`AccountStatus.PENDING_REVIEW`](#pending-review)[​](#pending-review "Direct link to pending-review")

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

[`Account`](https://docs.monei.com/apis/graphql/types/objects/account/.md) object
