# AuthorizedUser

Dashboard user authorized to access a MONEI merchant account. The same email may appear on multiple accounts with different access levels.

```
type AuthorizedUser {

  userEmail: String!

  id: ID!

  accessLevel: AuthorizedUserAccessLevel!

  storeId: ID

  pointOfSaleId: ID

  status: AuthorizedUserStatus!

  lastLoginAt: String

  createdAt: String

  updatedAt: String

}
```

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

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

User's email address. Identifies the user within an account.

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

User ID.

#### [`AuthorizedUser.accessLevel`](#access-level) ● [`AuthorizedUserAccessLevel!`](https://docs.monei.com/apis/graphql/types/enums/authorized-user-access-level/.md) non-null enum[​](#access-level "Direct link to access-level")

Permission level on this account.

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

Restrict the user to a single store. When set, the user only sees data for that store.

#### [`AuthorizedUser.pointOfSaleId`](#point-of-sale-id) ● [`ID`](https://docs.monei.com/apis/graphql/types/scalars/id/.md) scalar[​](#point-of-sale-id "Direct link to point-of-sale-id")

Restrict the user to a single point of sale. When set, the user only sees data for that POS.

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

Lifecycle status of the user's account.

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

Last sign-in timestamp in ISO 8601 format.

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

Creation timestamp in ISO 8601 format.

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

Update timestamp in ISO 8601 format.

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

[`createAuthorizedUser`](https://docs.monei.com/apis/graphql/operations/mutations/create-authorized-user/.md) mutation ● [`updateAuthorizedUser`](https://docs.monei.com/apis/graphql/operations/mutations/update-authorized-user/.md) mutation

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

[`AuthorizedUsersConnection`](https://docs.monei.com/apis/graphql/types/objects/authorized-users-connection/.md) object
