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

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

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

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

User ID.

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

Permission level on this account.

#### [`AuthorizedUser.storeId`](#store-id) ● [`ID`](https://docs.monei.com/es/es/apis/graphql/types/scalars/id/.md) scalar[​](#store-id "Enlace directo al 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/es/es/apis/graphql/types/scalars/id/.md) scalar[​](#point-of-sale-id "Enlace directo al 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/es/es/apis/graphql/types/enums/authorized-user-status/.md) non-null enum[​](#status "Enlace directo al status")

Lifecycle status of the user's account.

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

Last sign-in timestamp in ISO 8601 format.

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

Creation timestamp in ISO 8601 format.

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

Update timestamp in ISO 8601 format.

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

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

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

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